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_12272')
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_12272\\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_12272\\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 1540 2458 2025.06.26 08:12:50.411 2025.06.26 08:12:51.951 2025.06.26 07:09:32.413 2025.06.26 07:09:34.871
2 4.0.6.3214 2025.06.21 e11f6 P P 2009 1334 2025.06.25 12:51:55.908 2025.06.25 12:51:57.917 2025.06.25 11:49:20.418 2025.06.25 11:49:21.752
3 4.0.6.3213 2025.06.14 f015c P P 1561 1305 2025.06.21 07:52:33.494 2025.06.21 07:52:35.055 2025.06.21 06:49:39.339 2025.06.21 06:49:40.644
4 4.0.6.3212 2025.06.11 bc50d P P 1766 1303 2025.06.14 08:20:13.664 2025.06.14 08:20:15.430 2025.06.14 07:16:41.877 2025.06.14 07:16:43.180
5 4.0.6.3208 2025.06.10 19fe3 P P 1782 2142 2025.06.11 06:47:07.710 2025.06.11 06:47:09.492 2025.06.11 05:44:41.246 2025.06.11 05:44:43.388
6 4.0.6.3207 2025.06.07 205ff P P 2549 1325 2025.06.10 06:48:35.029 2025.06.10 06:48:37.578 2025.06.10 05:45:19.430 2025.06.10 05:45:20.755
7 4.0.6.3206 2025.05.22 d7d10 P P 2009 1289 2025.06.06 06:42:09.278 2025.06.06 06:42:11.287 2025.06.06 05:40:18.402 2025.06.06 05:40:19.691
8 4.0.6.3205 2025.05.07 00148 P P 2047 1281 2025.05.18 06:29:26.523 2025.05.18 06:29:28.570 2025.05.18 05:29:26.677 2025.05.18 05:29:27.958
9 4.0.6.3204 2025.05.06 35b85 P P 1490 1298 2025.05.07 06:37:39.486 2025.05.07 06:37:40.976 2025.05.07 05:36:20.928 2025.05.07 05:36:22.226
10 4.0.6.3203 2025.05.05 c2cbd P P 1775 1298 2025.05.06 06:37:57.410 2025.05.06 06:37:59.185 2025.05.06 05:36:28.302 2025.05.06 05:36:29.600
11 4.0.6.3200 2025.04.18 7ef56 P P 1756 1304 2025.04.26 06:42:31.458 2025.04.26 06:42:33.214 2025.04.26 05:40:44.717 2025.04.26 05:40:46.021
12 4.0.6.3199 2025.04.14 33a10 P P 2046 1280 2025.04.17 06:40:12.269 2025.04.17 06:40:14.315 2025.04.17 05:38:11.412 2025.04.17 05:38:12.692
13 4.0.6.3198 2025.04.13 64a7f P P 2002 1301 2025.04.14 06:38:22.286 2025.04.14 06:38:24.288 2025.04.14 05:36:31.730 2025.04.14 05:36:33.031
14 4.0.6.3195 2025.04.12 82cb5 P P 1750 1266 2025.04.13 06:23:06.784 2025.04.13 06:23:08.534 2025.04.13 05:23:44.476 2025.04.13 05:23:45.742
15 4.0.6.3195 2025.03.28 b9faf P P 1762 1520 2025.04.12 06:43:20.942 2025.04.12 06:43:22.704 2025.04.12 05:40:35.366 2025.04.12 05:40:36.886
16 4.0.6.3194 2025.03.27 ab754 P P 1536 1330 2025.03.28 06:55:57.555 2025.03.28 06:55:59.091 2025.03.28 05:52:46.982 2025.03.28 05:52:48.312
17 4.0.6.3194 2025.03.26 912aa P P 1543 1370 2025.03.27 06:46:17.647 2025.03.27 06:46:19.190 2025.03.27 05:41:51.648 2025.03.27 05:41:53.018
18 4.0.6.3193 2025.03.20 80234 P P 1585 1495 2025.03.24 06:46:47.748 2025.03.24 06:46:49.333 2025.03.24 05:42:02.516 2025.03.24 05:42:04.011
19 4.0.6.3192 2025.03.13 2a9da P P 1524 1335 2025.03.20 06:33:59.224 2025.03.20 06:34:00.748 2025.03.20 05:31:18.457 2025.03.20 05:31:19.792
20 4.0.6.3191 2025.03.10 3d9fd P P 1575 1328 2025.03.13 06:41:36.978 2025.03.13 06:41:38.553 2025.03.13 05:37:22.914 2025.03.13 05:37:24.242
21 4.0.6.3190 2025.02.25 c9928 P P 1595 1315 2025.03.09 06:38:23.523 2025.03.09 06:38:25.118 2025.03.09 05:34:19.468 2025.03.09 05:34:20.783
22 4.0.6.3189 2025.02.22 3fb0b P P 1563 1328 2025.02.25 06:27:16.055 2025.02.25 06:27:17.618 2025.02.25 05:24:52.900 2025.02.25 05:24:54.228
23 4.0.6.3188 2025.02.21 8ee1c P P 1941 1313 2025.02.22 06:20:52.707 2025.02.22 06:20:54.648 2025.02.22 05:18:52.739 2025.02.22 05:18:54.052
24 4.0.6.3186 2025.02.19 92cb6 P P 1946 1473 2025.02.20 04:18:40.208 2025.02.20 04:18:42.154 2025.02.20 03:16:01.690 2025.02.20 03:16:03.163
25 4.0.6.3185 2025.02.16 9cac4 P P 1565 1357 2025.02.17 02:05:56.809 2025.02.17 02:05:58.374 2025.02.17 01:04:07.219 2025.02.17 01:04:08.576
26 4.0.6.3183 2025.02.04 bf738 P P 1528 1316 2025.02.08 06:24:39.756 2025.02.08 06:24:41.284 2025.02.08 05:22:24.426 2025.02.08 05:22:25.742
27 4.0.6.3181 2025.02.01 00b64 P P 1794 1378 2025.02.04 06:38:10.013 2025.02.04 06:38:11.807 2025.02.04 05:35:46.060 2025.02.04 05:35:47.438
28 4.0.6.3180 2025.01.27 2edb8 P P 1793 1386 2025.01.28 06:21:14.281 2025.01.28 06:21:16.074 2025.01.28 05:19:35.440 2025.01.28 05:19:36.826
29 4.0.6.3179 2025.01.24 008d4 P P 1503 1305 2025.01.25 04:11:28.442 2025.01.25 04:11:29.945 2025.01.25 03:09:49.899 2025.01.25 03:09:51.204
30 4.0.6.3178 2025.01.20 ec94d P P 1731 1314 2025.01.24 06:21:57.339 2025.01.24 06:21:59.070 2025.01.24 05:20:09.480 2025.01.24 05:20:10.794
31 4.0.6.3176 2025.01.16 79cc1 P P 2011 1309 2025.01.20 06:20:43.826 2025.01.20 06:20:45.837 2025.01.20 05:18:58.874 2025.01.20 05:19:00.183
32 4.0.6.3175 2025.01.15 91361 P P 1577 1329 2025.01.16 06:24:31.094 2025.01.16 06:24:32.671 2025.01.16 05:22:23.530 2025.01.16 05:22:24.859
33 4.0.6.3174 2024.12.23 ffd39 P P 1519 1318 2025.01.15 06:18:00.660 2025.01.15 06:18:02.179 2025.01.15 05:15:52.361 2025.01.15 05:15:53.679
34 4.0.6.3173 2024.12.19 60b32 P P 1530 1326 2024.12.21 17:17:50.279 2024.12.21 17:17:51.809 2024.12.21 16:15:36.869 2024.12.21 16:15:38.195
35 4.0.6.3172 2024.12.11 33f5d P P 1515 1616 2024.12.16 06:20:03.055 2024.12.16 06:20:04.570 2024.12.16 05:18:12.815 2024.12.16 05:18:14.431
36 4.0.6.3171 2024.12.10 ab1d4 P P 1789 1834 2024.12.11 06:22:27.614 2024.12.11 06:22:29.403 2024.12.11 05:20:28.549 2024.12.11 05:20:30.383
37 4.0.6.3170 2024.12.02 68abd P P 2037 1609 2024.12.04 06:11:17.586 2024.12.04 06:11:19.623 2024.12.04 05:10:34.358 2024.12.04 05:10:35.967
38 4.0.6.3169 2024.11.28 1673f P P 1927 1312 2024.11.30 06:09:17.461 2024.11.30 06:09:19.388 2024.11.30 05:08:39.772 2024.11.30 05:08:41.084
39 4.0.6.3168 2024.11.27 7fffc P P 1800 1315 2024.11.28 06:05:13.402 2024.11.28 06:05:15.202 2024.11.28 05:05:17.756 2024.11.28 05:05:19.071
40 4.0.6.3168 2024.11.07 f67e2 P P 1766 1363 2024.11.27 06:07:43.027 2024.11.27 06:07:44.793 2024.11.27 05:06:58.948 2024.11.27 05:07:00.311
41 4.0.6.3167 2024.11.04 c9228 P P 1760 1311 2024.11.05 06:00:34.788 2024.11.05 06:00:36.548 2024.11.05 05:00:55.658 2024.11.05 05:00:56.969
42 4.0.6.3165 2024.10.23 b0c36 P P 1921 1317 2024.11.04 11:50:23.841 2024.11.04 11:50:25.762 2024.11.04 10:50:34.988 2024.11.04 10:50:36.305
43 4.0.6.3164 2024.10.17 35344 P P 1561 1348 2024.10.23 06:09:49.249 2024.10.23 06:09:50.810 2024.10.23 05:09:23.278 2024.10.23 05:09:24.626
44 4.0.6.3161 2024.10.05 91502 P P 1521 1597 2024.10.15 06:06:58.880 2024.10.15 06:07:00.401 2024.10.15 05:06:59.399 2024.10.15 05:07:00.996
45 4.0.6.3159 2024.10.01 85136 P P 2016 1356 2024.10.05 06:10:54.771 2024.10.05 06:10:56.787 2024.10.05 05:09:52.740 2024.10.05 05:09:54.096
46 4.0.6.3158 2024.09.30 14c68 P P 1751 1303 2024.10.01 06:09:04.031 2024.10.01 06:09:05.782 2024.10.01 05:08:06.361 2024.10.01 05:08:07.664
47 4.0.6.3157 2024.09.24 3bb2e P P 2000 1640 2024.09.30 06:08:41.797 2024.09.30 06:08:43.797 2024.09.30 05:08:05.007 2024.09.30 05:08:06.647
48 4.0.6.3156 2024.09.21 f6416 P P 1758 1589 2024.09.24 06:08:02.431 2024.09.24 06:08:04.189 2024.09.24 05:07:32.427 2024.09.24 05:07:34.016
49 4.0.6.3155 2024.09.20 1ed0c P P 1720 1320 2024.09.21 06:09:33.126 2024.09.21 06:09:34.846 2024.09.21 05:08:42.040 2024.09.21 05:08:43.360
50 4.0.6.3151 2024.09.09 1b77f P P 1516 1303 2024.09.17 06:06:49.899 2024.09.17 06:06:51.415 2024.09.17 05:07:04.562 2024.09.17 05:07:05.865
51 4.0.6.3149 2024.09.04 32ce9 P P 1583 1310 2024.09.08 04:07:46.812 2024.09.08 04:07:48.395 2024.09.08 03:07:02.904 2024.09.08 03:07:04.214
52 4.0.6.3148 2024.09.02 4be5c P P 2028 1334 2024.09.04 06:10:26.065 2024.09.04 06:10:28.093 2024.09.04 05:09:18.072 2024.09.04 05:09:19.406
53 4.0.6.3147 2024.08.30 5ffd7 P P 2014 1567 2024.09.02 05:59:49.890 2024.09.02 05:59:51.904 2024.09.02 04:58:59.005 2024.09.02 04:59:00.572
54 4.0.6.3146 2024.08.27 38582 P P 1831 1315 2024.08.30 05:54:43.089 2024.08.30 05:54:44.920 2024.08.30 04:53:52.520 2024.08.30 04:53:53.835
55 4.0.6.3145 2024.08.21 87240 P P 1536 1331 2024.08.27 05:49:49.214 2024.08.27 05:49:50.750 2024.08.27 04:49:06.798 2024.08.27 04:49:08.129
56 4.0.6.3144 2024.08.20 5a3b7 P P 1761 1730 2024.08.21 05:47:43.798 2024.08.21 05:47:45.559 2024.08.21 04:46:41.183 2024.08.21 04:46:42.913
57 4.0.6.3142 2024.08.11 b9f39 P P 2232 1395 2024.08.19 05:57:56.748 2024.08.19 05:57:58.980 2024.08.19 04:55:01.994 2024.08.19 04:55:03.389
58 4.0.6.3141 2024.08.09 6d39f P P 1668 1638 2024.08.11 03:51:52.009 2024.08.11 03:51:53.677 2024.08.11 02:48:36.636 2024.08.11 02:48:38.274
59 4.0.5.3140 2024.08.06 64f3a P P 2151 1363 2024.08.10 21:38:55.524 2024.08.10 21:38:57.675 2024.08.10 20:31:59.270 2024.08.10 20:32:00.633
60 4.0.5.3139 2024.08.01 3bc8b P P 1625 1244 2024.08.06 03:43:09.258 2024.08.06 03:43:10.883 2024.08.06 02:44:50.994 2024.08.06 02:44:52.238
61 4.0.5.3136 2024.07.31 e41ec P P 1907 1597 2024.08.01 12:14:49.542 2024.08.01 12:14:51.449 2024.08.01 11:18:40.391 2024.08.01 11:18:41.988
62 4.0.5.3135 2024.07.26 b4981 P P 1716 1493 2024.07.30 05:23:44.596 2024.07.30 05:23:46.312 2024.07.30 04:27:50.573 2024.07.30 04:27:52.066
63 4.0.5.3129 2024.07.24 b8184 P P 1467 1232 2024.07.25 05:23:25.315 2024.07.25 05:23:26.782 2024.07.25 04:27:29.135 2024.07.25 04:27:30.367
64 4.0.5.3128 2024.07.13 aa318 P P 1937 1236 2024.07.24 05:50:24.992 2024.07.24 05:50:26.929 2024.07.24 04:54:17.666 2024.07.24 04:54:18.902
65 4.0.5.3127 2024.07.10 eace3 P P 1375 1203 2024.07.13 05:19:52.569 2024.07.13 05:19:53.944 2024.07.13 04:24:44.899 2024.07.13 04:24:46.102
66 4.0.5.3123 2024.07.09 070ee P P 1772 1229 2024.07.10 05:34:38.446 2024.07.10 05:34:40.218 2024.07.10 04:37:09.267 2024.07.10 04:37:10.496
67 4.0.5.3123 2024.06.24 c27c6 P P 1460 2362 2024.07.09 05:33:56.498 2024.07.09 05:33:57.958 2024.07.09 04:35:48.807 2024.07.09 04:35:51.169
68 4.0.5.3112 2024.06.13 d2e61 P P 1814 2544 2024.06.21 22:08:45.260 2024.06.21 22:08:47.074 2024.06.21 21:10:09.645 2024.06.21 21:10:12.189
69 4.0.5.3109 2024.06.12 de9c0 P P 1359 1110 2024.06.13 03:00:45.726 2024.06.13 03:00:47.085 2024.06.13 02:08:46.789 2024.06.13 02:08:47.899
70 4.0.5.3109 2024.06.09 569cf P P 1359 1109 2024.06.11 03:01:04.132 2024.06.11 03:01:05.491 2024.06.11 02:08:58.666 2024.06.11 02:08:59.775
71 4.0.5.3103 2024.05.24 61480 P P 1329 1141 2024.05.25 02:57:58.953 2024.05.25 02:58:00.282 2024.05.25 02:06:22.889 2024.05.25 02:06:24.030
72 4.0.5.3100 2024.05.15 2dc0d P P 1328 1125 2024.05.24 03:00:23.065 2024.05.24 03:00:24.393 2024.05.24 02:07:54.230 2024.05.24 02:07:55.355
73 4.0.5.3098 2024.05.09 4c3ec P P 1344 1125 2024.05.15 02:56:24.425 2024.05.15 02:56:25.769 2024.05.15 02:04:59.940 2024.05.15 02:05:01.065
74 4.0.5.3097 2024.05.08 ec699 P P 1344 1141 2024.05.09 14:44:16.599 2024.05.09 14:44:17.943 2024.05.09 13:52:49.351 2024.05.09 13:52:50.492
75 4.0.5.3092 2024.05.06 bbc47 P P 1344 1141 2024.05.08 02:56:56.858 2024.05.08 02:56:58.202 2024.05.08 02:05:35.918 2024.05.08 02:05:37.059
76 4.0.5.3091 2024.04.29 062a7 P P 1328 1125 2024.04.30 02:54:43.453 2024.04.30 02:54:44.781 2024.04.30 02:03:41.498 2024.04.30 02:03:42.623
77 4.0.5.3089 2024.04.19 08c92 P P 1313 1125 2024.04.29 02:55:05.399 2024.04.29 02:55:06.712 2024.04.29 02:03:51.454 2024.04.29 02:03:52.579
78 4.0.5.3088 2024.04.17 c4484 P P 1313 1125 2024.04.19 02:55:06.988 2024.04.19 02:55:08.301 2024.04.19 02:03:35.369 2024.04.19 02:03:36.494
79 4.0.5.3086 2024.04.16 434ab P P 1344 1125 2024.04.17 02:52:04.785 2024.04.17 02:52:06.129 2024.04.17 02:01:10.158 2024.04.17 02:01:11.283
80 4.0.5.3083 2024.03.31 6ee48 P P 1313 1125 2024.04.13 02:47:29.557 2024.04.13 02:47:30.870 2024.04.13 01:56:45.795 2024.04.13 01:56:46.920
81 4.0.5.3082 2024.03.31 c768b P P 1360 1094 2024.04.04 14:24:00.107 2024.04.04 14:24:01.467 2024.04.04 13:36:43.966 2024.04.04 13:36:45.060
82 4.0.5.3082 2024.03.25 af9dc P P 1296 1093 2024.03.29 02:04:32.093 2024.03.29 02:04:33.389 2024.03.29 01:15:02.714 2024.03.29 01:15:03.807
83 4.0.5.3081 2024.03.22 17cd2 P P 1327 1093 2024.03.24 03:39:03.740 2024.03.24 03:39:05.067 2024.03.24 02:48:31.148 2024.03.24 02:48:32.241
84 4.0.5.3080 2024.03.22 5d44e P P 1280 1108 2024.03.22 16:23:40.583 2024.03.22 16:23:41.863 2024.03.22 15:36:05.965 2024.03.22 15:36:07.073
85 4.0.5.3080 2024.03.17 17edd P P 1281 1092 2024.03.20 19:50:50.045 2024.03.20 19:50:51.326 2024.03.20 19:03:19.095 2024.03.20 19:03:20.187

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):