Check firebird.log [no messages found for interval when this test was running]
Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
Network / firewall ?

failed on setup with "firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
-Failed to establish a connection."
3 #text
request = <SubRequest 'act' for <Function test_1>>

    @pytest.fixture
    def isql_act_fixture(request: pytest.FixtureRequest) -> Action:
>       db: Database = request.getfixturevalue(db_fixture_name)

src\firebird\qa\plugin.py:2696: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

request = <SubRequest 'db' for <Function test_1>>
db_path = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_12184')
db_cache = <firebird.qa.plugin.DbCache pytest object at [hex]>

    @pytest.fixture
    def database_fixture(request: pytest.FixtureRequest, db_path, db_cache) -> Database:
        db = Database(db_path, filename, user, password, charset, debug=str(request.module),
                      config_name=config_name, utf8filename=utf8filename)
        if not do_not_create:
            if from_backup is None and copy_of is None:
>               db.create(page_size, sql_dialect, db_cache)

src\firebird\qa\plugin.py:972: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

database = 'pytest'

    def create_database(database: str, *, user: str=None, password: str=None, role: str=None,
                        no_gc: bool=None, no_db_triggers: bool=None, dbkey_scope: DBKeyScope=None,
                        crypt_callback: iCryptKeyCallbackImpl=None, charset: str=None,
                        overwrite: bool=False, auth_plugin_list=None,
                        session_time_zone: str=None) -> Connection:
        """Creates new database.
    
        Arguments:
            database: DSN or Database configuration name.
            user: User name.
            password: User password.
            role: User role.
            no_gc: Do not perform garbage collection for this connection.
            no_db_triggers: Do not execute database triggers for this connection.
            dbkey_scope: DBKEY scope override for connection.
            crypt_callback: Callback that provides encryption key for the database.
            charset: Character set for connection.
            overwrite: Overwite the existing database.
            auth_plugin_list: List of authentication plugins override
            session_time_zone: Session time zone [Firebird 4]
    
        Hooks:
            Event `.ConnectionHook.ATTACHED`: Executed before `Connection` instance is
            returned. Hook must have signature::
    
                hook_func(connection: Connection) -> None
    
            Any value returned by hook is ignored.
        """
        db_config = driver_config.get_database(database)
        if db_config is None:
            db_config = driver_config.db_defaults
            db_config.database.value = database
            if db_config.server.value is None:
                srv_config = driver_config.server_defaults
            else:
                srv_config = driver_config.get_server(db_config.server.value)
                if srv_config is None:
                    raise ValueError(f"Configuration for server '{db_config.server.value}' not found")
        else:
            if db_config.server.value is None:
                srv_config = driver_config.server_defaults
            else:
                srv_config = driver_config.get_server(db_config.server.value)
                if srv_config is None:
                    raise ValueError(f"Configuration for server '{db_config.server.value}' not found")
        if user is None:
            user = db_config.user.value
            if user is None:
                user = srv_config.user.value
        if password is None:
            password = db_config.password.value
            if password is None:
                password = srv_config.password.value
        if role is None:
            role = db_config.role.value
        if charset is None:
            charset = db_config.charset.value
        if charset:
            charset = charset.upper()
        if auth_plugin_list is None:
            auth_plugin_list = db_config.auth_plugin_list.value
        if session_time_zone is None:
            session_time_zone = db_config.session_time_zone.value
        dsn = _connect_helper(db_config.dsn.value, srv_config.host.value, srv_config.port.value,
                              db_config.database.value, db_config.protocol.value)
        dpb = DPB(user=user, password=password, role=role, trusted_auth=db_config.trusted_auth.value,
                  sql_dialect=db_config.db_sql_dialect.value, timeout=db_config.timeout.value,
                  charset=charset, cache_size=db_config.cache_size.value,
                  no_linger=db_config.no_linger.value, utf8filename=db_config.utf8filename.value,
                  no_gc=no_gc, no_db_triggers=no_db_triggers, dbkey_scope=dbkey_scope,
                  dummy_packet_interval=db_config.dummy_packet_interval.value,
                  config=db_config.config.value, auth_plugin_list=auth_plugin_list,
                  session_time_zone=session_time_zone, set_bind=db_config.set_bind.value,
                  decfloat_round=db_config.decfloat_round.value,
                  decfloat_traps=db_config.decfloat_traps.value,
                  overwrite=overwrite, db_cache_size=db_config.db_cache_size.value,
                  forced_writes=db_config.forced_writes.value, page_size=db_config.page_size.value,
                  reserve_space=db_config.reserve_space.value, sweep_interval=db_config.sweep_interval.value,
                  db_sql_dialect=db_config.db_sql_dialect.value, db_charset=db_config.db_charset.value)
>       return __make_connection(True, dsn, db_config.utf8filename.value,
                                 dpb.get_buffer(for_create=True), db_config.sql_dialect.value,
                                 charset, crypt_callback)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:2242: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

create = True
dsn = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_12184\\test.fdb'
utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey0\x04NONED\x04NONED\x04NONE'
sql_dialect = 3, charset = 'NONE', crypt_callback = None

    def __make_connection(create: bool, dsn: str, utf8filename: bool, dpb: bytes,
                          sql_dialect: int, charset: str,
                          crypt_callback: iCryptKeyCallbackImpl) -> Connection:
        with a.get_api().master.get_dispatcher() as provider:
            if crypt_callback is not None:
                provider.set_dbcrypt_callback(crypt_callback)
            if create:
>               att = provider.create_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:2062: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
filename = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_12184\\test.fdb'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey0\x04NONED\x04NONED\x04NONE'
encoding = 'utf-8'

    def create_database(self, filename: str, dpb: bytes, encoding: str = 'ascii') -> iAttachment:
        "Replaces `isc_create_database()`"
        result = self.vtable.createDatabase(self, self.status, filename.encode(encoding), len(dpb), dpb)
>       self._check()

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1305: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>

    def _check(self) -> None:
        state = self.status.get_state()
        if StateFlag.ERRORS in state:
>           raise self.__report(DatabaseError, self.status.get_errors())
E           firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
E           -Failed to establish a connection.

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:113: DatabaseError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 4.0.6.3215 2025.06.25 6461d P E 1249 2703 2025.06.26 08:11:09.782 2025.06.26 08:11:11.031 2025.06.26 07:04:41.117 2025.06.26 07:04:43.820
2 4.0.6.3214 2025.06.21 e11f6 P P 1246 792 2025.06.25 12:50:15.942 2025.06.25 12:50:17.188 2025.06.25 11:48:07.346 2025.06.25 11:48:08.138
3 4.0.6.3213 2025.06.14 f015c P P 1259 1663 2025.06.21 07:50:52.102 2025.06.21 07:50:53.361 2025.06.21 06:48:27.086 2025.06.21 06:48:28.749
4 4.0.6.3212 2025.06.11 bc50d P P 1273 783 2025.06.14 08:18:32.283 2025.06.14 08:18:33.556 2025.06.14 07:15:32.163 2025.06.14 07:15:32.946
5 4.0.6.3208 2025.06.10 19fe3 P P 1297 802 2025.06.11 06:45:27.248 2025.06.11 06:45:28.545 2025.06.11 05:43:28.501 2025.06.11 05:43:29.303
6 4.0.6.3207 2025.06.07 205ff P P 1292 821 2025.06.10 06:46:53.007 2025.06.10 06:46:54.299 2025.06.10 05:44:06.136 2025.06.10 05:44:06.957
7 4.0.6.3206 2025.05.22 d7d10 P P 1259 762 2025.06.06 06:40:28.215 2025.06.06 06:40:29.474 2025.06.06 05:39:08.960 2025.06.06 05:39:09.722
8 4.0.6.3205 2025.05.07 00148 P P 1266 749 2025.05.18 06:27:46.580 2025.05.18 06:27:47.846 2025.05.18 05:28:20.580 2025.05.18 05:28:21.329
9 4.0.6.3204 2025.05.06 35b85 P P 1226 756 2025.05.07 06:36:01.081 2025.05.07 06:36:02.307 2025.05.07 05:35:12.543 2025.05.07 05:35:13.299
10 4.0.6.3203 2025.05.05 c2cbd P P 1229 743 2025.05.06 06:36:18.517 2025.05.06 06:36:19.746 2025.05.06 05:35:20.159 2025.05.06 05:35:20.902
11 4.0.6.3200 2025.04.18 7ef56 P P 1228 748 2025.04.26 06:40:52.594 2025.04.26 06:40:53.822 2025.04.26 05:39:36.138 2025.04.26 05:39:36.886
12 4.0.6.3199 2025.04.14 33a10 P P 1332 753 2025.04.17 06:38:29.864 2025.04.17 06:38:31.196 2025.04.17 05:37:03.086 2025.04.17 05:37:03.839
13 4.0.6.3198 2025.04.13 64a7f P P 1233 759 2025.04.14 06:36:42.539 2025.04.14 06:36:43.772 2025.04.14 05:35:23.011 2025.04.14 05:35:23.770
14 4.0.6.3195 2025.04.12 82cb5 P P 1219 719 2025.04.13 06:21:31.947 2025.04.13 06:21:33.166 2025.04.13 05:22:38.816 2025.04.13 05:22:39.535
15 4.0.6.3195 2025.03.28 b9faf P P 1247 750 2025.04.12 06:41:42.009 2025.04.12 06:41:43.256 2025.04.12 05:39:27.417 2025.04.12 05:39:28.167
16 4.0.6.3194 2025.03.27 ab754 P P 1259 796 2025.03.28 06:54:15.850 2025.03.28 06:54:17.109 2025.03.28 05:51:35.960 2025.03.28 05:51:36.756
17 4.0.6.3194 2025.03.26 912aa P P 1293 863 2025.03.27 06:44:36.692 2025.03.27 06:44:37.985 2025.03.27 05:40:38.837 2025.03.27 05:40:39.700
18 4.0.6.3193 2025.03.20 80234 P P 1334 801 2025.03.24 06:45:03.411 2025.03.24 06:45:04.745 2025.03.24 05:40:49.326 2025.03.24 05:40:50.127
19 4.0.6.3192 2025.03.13 2a9da P P 1282 747 2025.03.20 06:32:20.577 2025.03.20 06:32:21.859 2025.03.20 05:30:10.322 2025.03.20 05:30:11.069
20 4.0.6.3191 2025.03.10 3d9fd P P 1319 796 2025.03.13 06:39:55.215 2025.03.13 06:39:56.534 2025.03.13 05:36:11.839 2025.03.13 05:36:12.635
21 4.0.6.3190 2025.02.25 c9928 P P 1229 813 2025.03.09 06:36:42.207 2025.03.09 06:36:43.436 2025.03.09 05:33:10.080 2025.03.09 05:33:10.893
22 4.0.6.3189 2025.02.22 3fb0b P P 1237 796 2025.02.25 06:25:37.294 2025.02.25 06:25:38.531 2025.02.25 05:23:43.369 2025.02.25 05:23:44.165
23 4.0.6.3188 2025.02.21 8ee1c P P 1254 755 2025.02.22 06:19:14.539 2025.02.22 06:19:15.793 2025.02.22 05:17:44.486 2025.02.22 05:17:45.241
24 4.0.6.3186 2025.02.19 92cb6 P P 1241 751 2025.02.20 04:17:01.025 2025.02.20 04:17:02.266 2025.02.20 03:14:53.171 2025.02.20 03:14:53.922
25 4.0.6.3185 2025.02.16 9cac4 P P 1345 739 2025.02.17 02:04:18.712 2025.02.17 02:04:20.057 2025.02.17 01:02:59.288 2025.02.17 01:03:00.027
26 4.0.6.3183 2025.02.04 bf738 P P 1231 748 2025.02.08 06:23:01.138 2025.02.08 06:23:02.369 2025.02.08 05:21:15.344 2025.02.08 05:21:16.092
27 4.0.6.3181 2025.02.01 00b64 P P 1231 764 2025.02.04 06:36:31.547 2025.02.04 06:36:32.778 2025.02.04 05:34:37.748 2025.02.04 05:34:38.512
28 4.0.6.3180 2025.01.27 2edb8 P P 1239 758 2025.01.28 06:19:35.708 2025.01.28 06:19:36.947 2025.01.28 05:18:27.236 2025.01.28 05:18:27.994
29 4.0.6.3179 2025.01.24 008d4 P P 1259 746 2025.01.25 04:09:50.144 2025.01.25 04:09:51.403 2025.01.25 03:08:41.949 2025.01.25 03:08:42.695
30 4.0.6.3178 2025.01.20 ec94d P P 1229 759 2025.01.24 06:20:19.207 2025.01.24 06:20:20.436 2025.01.24 05:19:01.643 2025.01.24 05:19:02.402
31 4.0.6.3176 2025.01.16 79cc1 P P 1227 758 2025.01.20 06:19:05.281 2025.01.20 06:19:06.508 2025.01.20 05:17:50.685 2025.01.20 05:17:51.443
32 4.0.6.3175 2025.01.15 91361 P P 1243 751 2025.01.16 06:22:52.362 2025.01.16 06:22:53.605 2025.01.16 05:21:15.658 2025.01.16 05:21:16.409
33 4.0.6.3174 2024.12.23 ffd39 P P 1243 740 2025.01.15 06:16:21.823 2025.01.15 06:16:23.066 2025.01.15 05:14:44.366 2025.01.15 05:14:45.106
34 4.0.6.3173 2024.12.19 60b32 P P 1241 836 2024.12.21 17:16:10.607 2024.12.21 17:16:11.848 2024.12.21 16:14:25.523 2024.12.21 16:14:26.359
35 4.0.6.3172 2024.12.11 33f5d P P 1237 757 2024.12.16 06:18:24.050 2024.12.16 06:18:25.287 2024.12.16 05:17:04.888 2024.12.16 05:17:05.645
36 4.0.6.3171 2024.12.10 ab1d4 P P 1247 744 2024.12.11 06:20:48.117 2024.12.11 06:20:49.364 2024.12.11 05:19:20.521 2024.12.11 05:19:21.265
37 4.0.6.3170 2024.12.02 68abd P P 1274 758 2024.12.04 06:09:38.579 2024.12.04 06:09:39.853 2024.12.04 05:09:25.690 2024.12.04 05:09:26.448
38 4.0.6.3169 2024.11.28 1673f P P 1243 757 2024.11.30 06:07:37.592 2024.11.30 06:07:38.835 2024.11.30 05:07:31.429 2024.11.30 05:07:32.186
39 4.0.6.3168 2024.11.27 7fffc P P 1236 759 2024.11.28 06:03:34.420 2024.11.28 06:03:35.656 2024.11.28 05:04:09.509 2024.11.28 05:04:10.268
40 4.0.6.3168 2024.11.07 f67e2 P P 1272 763 2024.11.27 06:06:03.895 2024.11.27 06:06:05.167 2024.11.27 05:05:50.766 2024.11.27 05:05:51.529
41 4.0.6.3167 2024.11.04 c9228 P P 1266 750 2024.11.05 05:58:56.333 2024.11.05 05:58:57.599 2024.11.05 04:59:47.234 2024.11.05 04:59:47.984
42 4.0.6.3165 2024.10.23 b0c36 P P 1239 759 2024.11.04 11:48:44.164 2024.11.04 11:48:45.403 2024.11.04 10:49:26.755 2024.11.04 10:49:27.514
43 4.0.6.3164 2024.10.17 35344 P P 1268 750 2024.10.23 06:08:08.808 2024.10.23 06:08:10.076 2024.10.23 05:08:13.373 2024.10.23 05:08:14.123
44 4.0.6.3161 2024.10.05 91502 P P 1255 751 2024.10.15 06:05:19.723 2024.10.15 06:05:20.978 2024.10.15 05:05:51.477 2024.10.15 05:05:52.228
45 4.0.6.3159 2024.10.01 85136 P P 1253 799 2024.10.05 06:09:15.595 2024.10.05 06:09:16.848 2024.10.05 05:08:41.244 2024.10.05 05:08:42.043
46 4.0.6.3158 2024.09.30 14c68 P P 1241 757 2024.10.01 06:07:24.691 2024.10.01 06:07:25.932 2024.10.01 05:06:57.677 2024.10.01 05:06:58.434
47 4.0.6.3157 2024.09.24 3bb2e P P 1315 766 2024.09.30 06:06:58.110 2024.09.30 06:06:59.425 2024.09.30 05:06:55.218 2024.09.30 05:06:55.984
48 4.0.6.3156 2024.09.21 f6416 P P 1264 745 2024.09.24 06:06:23.188 2024.09.24 06:06:24.452 2024.09.24 05:06:24.027 2024.09.24 05:06:24.772
49 4.0.6.3155 2024.09.20 1ed0c P P 1239 753 2024.09.21 06:07:54.375 2024.09.21 06:07:55.614 2024.09.21 05:07:33.657 2024.09.21 05:07:34.410
50 4.0.6.3151 2024.09.09 1b77f P P 1288 797 2024.09.17 06:05:11.005 2024.09.17 06:05:12.293 2024.09.17 05:05:53.896 2024.09.17 05:05:54.693
51 4.0.6.3149 2024.09.04 32ce9 P P 1265 743 2024.09.08 04:06:07.069 2024.09.08 04:06:08.334 2024.09.08 03:05:54.365 2024.09.08 03:05:55.108
52 4.0.6.3148 2024.09.02 4be5c P P 1293 767 2024.09.04 06:08:45.215 2024.09.04 06:08:46.508 2024.09.04 05:08:07.523 2024.09.04 05:08:08.290
53 4.0.6.3147 2024.08.30 5ffd7 P P 1281 752 2024.09.02 05:58:10.104 2024.09.02 05:58:11.385 2024.09.02 04:57:49.044 2024.09.02 04:57:49.796
54 4.0.6.3146 2024.08.27 38582 P P 1242 760 2024.08.30 05:53:03.962 2024.08.30 05:53:05.204 2024.08.30 04:52:42.884 2024.08.30 04:52:43.644
55 4.0.6.3145 2024.08.21 87240 P P 1323 750 2024.08.27 05:48:10.307 2024.08.27 05:48:11.630 2024.08.27 04:47:59.206 2024.08.27 04:47:59.956
56 4.0.6.3144 2024.08.20 5a3b7 P P 1262 739 2024.08.21 05:46:02.712 2024.08.21 05:46:03.974 2024.08.21 04:45:33.546 2024.08.21 04:45:34.285
57 4.0.6.3142 2024.08.11 b9f39 P P 1325 784 2024.08.19 05:56:09.745 2024.08.19 05:56:11.070 2024.08.19 04:53:51.415 2024.08.19 04:53:52.199
58 4.0.6.3141 2024.08.09 6d39f P P 1335 815 2024.08.11 03:50:06.389 2024.08.11 03:50:07.724 2024.08.11 02:47:25.745 2024.08.11 02:47:26.560
59 4.0.5.3140 2024.08.06 64f3a P P 1382 778 2024.08.10 21:37:05.646 2024.08.10 21:37:07.028 2024.08.10 20:30:48.919 2024.08.10 20:30:49.697
60 4.0.5.3139 2024.08.01 3bc8b P P 1276 662 2024.08.06 03:41:29.066 2024.08.06 03:41:30.342 2024.08.06 02:43:46.398 2024.08.06 02:43:47.060
61 4.0.5.3136 2024.07.31 e41ec P P 1261 658 2024.08.01 12:13:11.340 2024.08.01 12:13:12.601 2024.08.01 11:17:36.466 2024.08.01 11:17:37.124
62 4.0.5.3135 2024.07.26 b4981 P P 1136 671 2024.07.30 05:22:09.250 2024.07.30 05:22:10.386 2024.07.30 04:26:46.725 2024.07.30 04:26:47.396
63 4.0.5.3129 2024.07.24 b8184 P P 1130 672 2024.07.25 05:21:50.055 2024.07.25 05:21:51.185 2024.07.25 04:26:24.919 2024.07.25 04:26:25.591
64 4.0.5.3128 2024.07.13 aa318 P P 1197 665 2024.07.24 05:48:50.148 2024.07.24 05:48:51.345 2024.07.24 04:53:13.988 2024.07.24 04:53:14.653
65 4.0.5.3127 2024.07.10 eace3 P P 1125 640 2024.07.13 05:18:23.144 2024.07.13 05:18:24.269 2024.07.13 04:23:43.924 2024.07.13 04:23:44.564
66 4.0.5.3123 2024.07.09 070ee P P 1144 663 2024.07.10 05:33:02.903 2024.07.10 05:33:04.047 2024.07.10 04:36:06.023 2024.07.10 04:36:06.686
67 4.0.5.3123 2024.06.24 c27c6 P P 1132 654 2024.07.09 05:32:21.404 2024.07.09 05:32:22.536 2024.07.09 04:34:45.048 2024.07.09 04:34:45.702
68 4.0.5.3112 2024.06.13 d2e61 P P 1135 677 2024.06.21 22:07:09.120 2024.06.21 22:07:10.255 2024.06.21 21:06:45.629 2024.06.21 21:06:46.306
69 4.0.5.3109 2024.06.12 de9c0 P P 1203 532 2024.06.13 02:59:15.997 2024.06.13 02:59:17.200 2024.06.13 02:07:55.783 2024.06.13 02:07:56.315
70 4.0.5.3109 2024.06.09 569cf P P 1281 500 2024.06.11 02:59:34.231 2024.06.11 02:59:35.512 2024.06.11 02:08:07.863 2024.06.11 02:08:08.363
71 4.0.5.3103 2024.05.24 61480 P P 1219 500 2024.05.25 02:56:29.006 2024.05.25 02:56:30.225 2024.05.25 02:05:32.181 2024.05.25 02:05:32.681
72 4.0.5.3100 2024.05.15 2dc0d P P 1203 532 2024.05.24 02:58:54.227 2024.05.24 02:58:55.430 2024.05.24 02:07:03.412 2024.05.24 02:07:03.944
73 4.0.5.3098 2024.05.09 4c3ec P P 1203 516 2024.05.15 02:54:55.650 2024.05.15 02:54:56.853 2024.05.15 02:04:09.325 2024.05.15 02:04:09.841
74 4.0.5.3097 2024.05.08 ec699 P P 1195 516 2024.05.09 14:42:48.002 2024.05.09 14:42:49.197 2024.05.09 13:51:58.580 2024.05.09 13:51:59.096
75 4.0.5.3092 2024.05.06 bbc47 P P 1187 500 2024.05.08 02:55:28.036 2024.05.08 02:55:29.223 2024.05.08 02:04:45.194 2024.05.08 02:04:45.694
76 4.0.5.3091 2024.04.29 062a7 P P 1203 500 2024.04.30 02:53:15.193 2024.04.30 02:53:16.396 2024.04.30 02:02:51.009 2024.04.30 02:02:51.509
77 4.0.5.3089 2024.04.19 08c92 P P 1203 532 2024.04.29 02:53:35.935 2024.04.29 02:53:37.138 2024.04.29 02:02:59.323 2024.04.29 02:02:59.855
78 4.0.5.3088 2024.04.17 c4484 P P 1234 500 2024.04.19 02:53:39.635 2024.04.19 02:53:40.869 2024.04.19 02:02:46.113 2024.04.19 02:02:46.613
79 4.0.5.3086 2024.04.16 434ab P P 1204 500 2024.04.17 02:50:38.885 2024.04.17 02:50:40.089 2024.04.17 02:00:20.621 2024.04.17 02:00:21.121
80 4.0.5.3083 2024.03.31 6ee48 P P 1203 516 2024.04.13 02:46:03.329 2024.04.13 02:46:04.532 2024.04.13 01:55:56.414 2024.04.13 01:55:56.930
81 4.0.5.3082 2024.03.31 c768b P P 1000 469 2024.04.04 14:22:42.896 2024.04.04 14:22:43.896 2024.04.04 13:35:56.743 2024.04.04 13:35:57.212
82 4.0.5.3082 2024.03.25 af9dc P P 1156 468 2024.03.29 02:03:08.225 2024.03.29 02:03:09.381 2024.03.29 01:14:15.427 2024.03.29 01:14:15.895
83 4.0.5.3081 2024.03.22 17cd2 P P 1171 468 2024.03.24 03:37:39.872 2024.03.24 03:37:41.043 2024.03.24 02:47:43.706 2024.03.24 02:47:44.174
84 4.0.5.3080 2024.03.22 5d44e P P 983 468 2024.03.22 16:22:24.731 2024.03.22 16:22:25.714 2024.03.22 15:35:18.756 2024.03.22 15:35:19.224
85 4.0.5.3080 2024.03.17 17edd P P 999 468 2024.03.20 19:49:34.069 2024.03.20 19:49:35.068 2024.03.20 19:02:31.933 2024.03.20 19:02:32.401

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):