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_12183')
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_12183\\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_12183\\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 1947 2437 2025.06.26 08:11:07.835 2025.06.26 08:11:09.782 2025.06.26 07:04:38.680 2025.06.26 07:04:41.117
2 4.0.6.3214 2025.06.21 e11f6 P P 1893 1349 2025.06.25 12:50:14.049 2025.06.25 12:50:15.942 2025.06.25 11:48:05.997 2025.06.25 11:48:07.346
3 4.0.6.3213 2025.06.14 f015c P P 1961 1271 2025.06.21 07:50:50.141 2025.06.21 07:50:52.102 2025.06.21 06:48:25.815 2025.06.21 06:48:27.086
4 4.0.6.3212 2025.06.11 bc50d P P 1924 1254 2025.06.14 08:18:30.359 2025.06.14 08:18:32.283 2025.06.14 07:15:30.909 2025.06.14 07:15:32.163
5 4.0.6.3208 2025.06.10 19fe3 P P 1966 1312 2025.06.11 06:45:25.282 2025.06.11 06:45:27.248 2025.06.11 05:43:27.189 2025.06.11 05:43:28.501
6 4.0.6.3207 2025.06.07 205ff P P 1981 1324 2025.06.10 06:46:51.026 2025.06.10 06:46:53.007 2025.06.10 05:44:04.812 2025.06.10 05:44:06.136
7 4.0.6.3206 2025.05.22 d7d10 P P 1929 1241 2025.06.06 06:40:26.286 2025.06.06 06:40:28.215 2025.06.06 05:39:07.719 2025.06.06 05:39:08.960
8 4.0.6.3205 2025.05.07 00148 P P 1937 1188 2025.05.18 06:27:44.643 2025.05.18 06:27:46.580 2025.05.18 05:28:19.392 2025.05.18 05:28:20.580
9 4.0.6.3204 2025.05.06 35b85 P P 1889 1242 2025.05.07 06:35:59.192 2025.05.07 06:36:01.081 2025.05.07 05:35:11.301 2025.05.07 05:35:12.543
10 4.0.6.3203 2025.05.05 c2cbd P P 1903 1252 2025.05.06 06:36:16.614 2025.05.06 06:36:18.517 2025.05.06 05:35:18.907 2025.05.06 05:35:20.159
11 4.0.6.3200 2025.04.18 7ef56 P P 1899 1240 2025.04.26 06:40:50.695 2025.04.26 06:40:52.594 2025.04.26 05:39:34.898 2025.04.26 05:39:36.138
12 4.0.6.3199 2025.04.14 33a10 P P 1994 1215 2025.04.17 06:38:27.870 2025.04.17 06:38:29.864 2025.04.17 05:37:01.871 2025.04.17 05:37:03.086
13 4.0.6.3198 2025.04.13 64a7f P P 1902 1241 2025.04.14 06:36:40.637 2025.04.14 06:36:42.539 2025.04.14 05:35:21.770 2025.04.14 05:35:23.011
14 4.0.6.3195 2025.04.12 82cb5 P P 1843 1203 2025.04.13 06:21:30.104 2025.04.13 06:21:31.947 2025.04.13 05:22:37.613 2025.04.13 05:22:38.816
15 4.0.6.3195 2025.03.28 b9faf P P 1935 1206 2025.04.12 06:41:40.074 2025.04.12 06:41:42.009 2025.04.12 05:39:26.211 2025.04.12 05:39:27.417
16 4.0.6.3194 2025.03.27 ab754 P P 2006 1308 2025.03.28 06:54:13.844 2025.03.28 06:54:15.850 2025.03.28 05:51:34.652 2025.03.28 05:51:35.960
17 4.0.6.3194 2025.03.26 912aa P P 2058 1389 2025.03.27 06:44:34.634 2025.03.27 06:44:36.692 2025.03.27 05:40:37.448 2025.03.27 05:40:38.837
18 4.0.6.3193 2025.03.20 80234 P P 2108 1325 2025.03.24 06:45:01.303 2025.03.24 06:45:03.411 2025.03.24 05:40:48.001 2025.03.24 05:40:49.326
19 4.0.6.3192 2025.03.13 2a9da P P 1895 1235 2025.03.20 06:32:18.682 2025.03.20 06:32:20.577 2025.03.20 05:30:09.087 2025.03.20 05:30:10.322
20 4.0.6.3191 2025.03.10 3d9fd P P 2023 1321 2025.03.13 06:39:53.192 2025.03.13 06:39:55.215 2025.03.13 05:36:10.518 2025.03.13 05:36:11.839
21 4.0.6.3190 2025.02.25 c9928 P P 1946 1353 2025.03.09 06:36:40.261 2025.03.09 06:36:42.207 2025.03.09 05:33:08.727 2025.03.09 05:33:10.080
22 4.0.6.3189 2025.02.22 3fb0b P P 1928 1261 2025.02.25 06:25:35.366 2025.02.25 06:25:37.294 2025.02.25 05:23:42.108 2025.02.25 05:23:43.369
23 4.0.6.3188 2025.02.21 8ee1c P P 1911 1224 2025.02.22 06:19:12.628 2025.02.22 06:19:14.539 2025.02.22 05:17:43.262 2025.02.22 05:17:44.486
24 4.0.6.3186 2025.02.19 92cb6 P P 1948 1212 2025.02.20 04:16:59.077 2025.02.20 04:17:01.025 2025.02.20 03:14:51.959 2025.02.20 03:14:53.171
25 4.0.6.3185 2025.02.16 9cac4 P P 1949 1206 2025.02.17 02:04:16.763 2025.02.17 02:04:18.712 2025.02.17 01:02:58.082 2025.02.17 01:02:59.288
26 4.0.6.3183 2025.02.04 bf738 P P 1951 1239 2025.02.08 06:22:59.187 2025.02.08 06:23:01.138 2025.02.08 05:21:14.105 2025.02.08 05:21:15.344
27 4.0.6.3181 2025.02.01 00b64 P P 1907 1277 2025.02.04 06:36:29.640 2025.02.04 06:36:31.547 2025.02.04 05:34:36.471 2025.02.04 05:34:37.748
28 4.0.6.3180 2025.01.27 2edb8 P P 1889 1239 2025.01.28 06:19:33.819 2025.01.28 06:19:35.708 2025.01.28 05:18:25.997 2025.01.28 05:18:27.236
29 4.0.6.3179 2025.01.24 008d4 P P 1939 1225 2025.01.25 04:09:48.205 2025.01.25 04:09:50.144 2025.01.25 03:08:40.724 2025.01.25 03:08:41.949
30 4.0.6.3178 2025.01.20 ec94d P P 1909 1235 2025.01.24 06:20:17.298 2025.01.24 06:20:19.207 2025.01.24 05:19:00.408 2025.01.24 05:19:01.643
31 4.0.6.3176 2025.01.16 79cc1 P P 1941 1244 2025.01.20 06:19:03.340 2025.01.20 06:19:05.281 2025.01.20 05:17:49.441 2025.01.20 05:17:50.685
32 4.0.6.3175 2025.01.15 91361 P P 1939 1234 2025.01.16 06:22:50.423 2025.01.16 06:22:52.362 2025.01.16 05:21:14.424 2025.01.16 05:21:15.658
33 4.0.6.3174 2024.12.23 ffd39 P P 1923 1229 2025.01.15 06:16:19.900 2025.01.15 06:16:21.823 2025.01.15 05:14:43.137 2025.01.15 05:14:44.366
34 4.0.6.3173 2024.12.19 60b32 P P 1942 1325 2024.12.21 17:16:08.665 2024.12.21 17:16:10.607 2024.12.21 16:14:24.198 2024.12.21 16:14:25.523
35 4.0.6.3172 2024.12.11 33f5d P P 1894 1243 2024.12.16 06:18:22.156 2024.12.16 06:18:24.050 2024.12.16 05:17:03.645 2024.12.16 05:17:04.888
36 4.0.6.3171 2024.12.10 ab1d4 P P 1910 1246 2024.12.11 06:20:46.207 2024.12.11 06:20:48.117 2024.12.11 05:19:19.275 2024.12.11 05:19:20.521
37 4.0.6.3170 2024.12.02 68abd P P 1940 1237 2024.12.04 06:09:36.639 2024.12.04 06:09:38.579 2024.12.04 05:09:24.453 2024.12.04 05:09:25.690
38 4.0.6.3169 2024.11.28 1673f P P 1917 1233 2024.11.30 06:07:35.675 2024.11.30 06:07:37.592 2024.11.30 05:07:30.196 2024.11.30 05:07:31.429
39 4.0.6.3168 2024.11.27 7fffc P P 1923 1231 2024.11.28 06:03:32.497 2024.11.28 06:03:34.420 2024.11.28 05:04:08.278 2024.11.28 05:04:09.509
40 4.0.6.3168 2024.11.07 f67e2 P P 1928 1248 2024.11.27 06:06:01.967 2024.11.27 06:06:03.895 2024.11.27 05:05:49.518 2024.11.27 05:05:50.766
41 4.0.6.3167 2024.11.04 c9228 P P 1931 1213 2024.11.05 05:58:54.402 2024.11.05 05:58:56.333 2024.11.05 04:59:46.021 2024.11.05 04:59:47.234
42 4.0.6.3165 2024.10.23 b0c36 P P 1920 1246 2024.11.04 11:48:42.244 2024.11.04 11:48:44.164 2024.11.04 10:49:25.509 2024.11.04 10:49:26.755
43 4.0.6.3164 2024.10.17 35344 P P 1942 1237 2024.10.23 06:08:06.866 2024.10.23 06:08:08.808 2024.10.23 05:08:12.136 2024.10.23 05:08:13.373
44 4.0.6.3161 2024.10.05 91502 P P 1936 1232 2024.10.15 06:05:17.787 2024.10.15 06:05:19.723 2024.10.15 05:05:50.245 2024.10.15 05:05:51.477
45 4.0.6.3159 2024.10.01 85136 P P 1917 1314 2024.10.05 06:09:13.678 2024.10.05 06:09:15.595 2024.10.05 05:08:39.930 2024.10.05 05:08:41.244
46 4.0.6.3158 2024.09.30 14c68 P P 1936 1219 2024.10.01 06:07:22.755 2024.10.01 06:07:24.691 2024.10.01 05:06:56.458 2024.10.01 05:06:57.677
47 4.0.6.3157 2024.09.24 3bb2e P P 2006 1228 2024.09.30 06:06:56.104 2024.09.30 06:06:58.110 2024.09.30 05:06:53.990 2024.09.30 05:06:55.218
48 4.0.6.3156 2024.09.21 f6416 P P 1896 1220 2024.09.24 06:06:21.292 2024.09.24 06:06:23.188 2024.09.24 05:06:22.807 2024.09.24 05:06:24.027
49 4.0.6.3155 2024.09.20 1ed0c P P 1914 1256 2024.09.21 06:07:52.461 2024.09.21 06:07:54.375 2024.09.21 05:07:32.401 2024.09.21 05:07:33.657
50 4.0.6.3151 2024.09.09 1b77f P P 1972 1319 2024.09.17 06:05:09.033 2024.09.17 06:05:11.005 2024.09.17 05:05:52.577 2024.09.17 05:05:53.896
51 4.0.6.3149 2024.09.04 32ce9 P P 1933 1247 2024.09.08 04:06:05.136 2024.09.08 04:06:07.069 2024.09.08 03:05:53.118 2024.09.08 03:05:54.365
52 4.0.6.3148 2024.09.02 4be5c P P 1938 1245 2024.09.04 06:08:43.277 2024.09.04 06:08:45.215 2024.09.04 05:08:06.278 2024.09.04 05:08:07.523
53 4.0.6.3147 2024.08.30 5ffd7 P P 1945 1231 2024.09.02 05:58:08.159 2024.09.02 05:58:10.104 2024.09.02 04:57:47.813 2024.09.02 04:57:49.044
54 4.0.6.3146 2024.08.27 38582 P P 1908 1248 2024.08.30 05:53:02.054 2024.08.30 05:53:03.962 2024.08.30 04:52:41.636 2024.08.30 04:52:42.884
55 4.0.6.3145 2024.08.21 87240 P P 1978 1234 2024.08.27 05:48:08.329 2024.08.27 05:48:10.307 2024.08.27 04:47:57.972 2024.08.27 04:47:59.206
56 4.0.6.3144 2024.08.20 5a3b7 P P 1979 1226 2024.08.21 05:46:00.733 2024.08.21 05:46:02.712 2024.08.21 04:45:32.320 2024.08.21 04:45:33.546
57 4.0.6.3142 2024.08.11 b9f39 P P 2063 1238 2024.08.19 05:56:07.682 2024.08.19 05:56:09.745 2024.08.19 04:53:50.177 2024.08.19 04:53:51.415
58 4.0.6.3141 2024.08.09 6d39f P P 1975 1309 2024.08.11 03:50:04.414 2024.08.11 03:50:06.389 2024.08.11 02:47:24.436 2024.08.11 02:47:25.745
59 4.0.5.3140 2024.08.06 64f3a P P 2239 1251 2024.08.10 21:37:03.407 2024.08.10 21:37:05.646 2024.08.10 20:30:47.668 2024.08.10 20:30:48.919
60 4.0.5.3139 2024.08.01 3bc8b P P 1899 1169 2024.08.06 03:41:27.167 2024.08.06 03:41:29.066 2024.08.06 02:43:45.229 2024.08.06 02:43:46.398
61 4.0.5.3136 2024.07.31 e41ec P P 1938 1167 2024.08.01 12:13:09.402 2024.08.01 12:13:11.340 2024.08.01 11:17:35.299 2024.08.01 11:17:36.466
62 4.0.5.3135 2024.07.26 b4981 P P 1846 1130 2024.07.30 05:22:07.404 2024.07.30 05:22:09.250 2024.07.30 04:26:45.595 2024.07.30 04:26:46.725
63 4.0.5.3129 2024.07.24 b8184 P P 1788 1156 2024.07.25 05:21:48.267 2024.07.25 05:21:50.055 2024.07.25 04:26:23.763 2024.07.25 04:26:24.919
64 4.0.5.3128 2024.07.13 aa318 P P 1813 1195 2024.07.24 05:48:48.335 2024.07.24 05:48:50.148 2024.07.24 04:53:12.793 2024.07.24 04:53:13.988
65 4.0.5.3127 2024.07.10 eace3 P P 1735 1110 2024.07.13 05:18:21.409 2024.07.13 05:18:23.144 2024.07.13 04:23:42.814 2024.07.13 04:23:43.924
66 4.0.5.3123 2024.07.09 070ee P P 1833 1132 2024.07.10 05:33:01.070 2024.07.10 05:33:02.903 2024.07.10 04:36:04.891 2024.07.10 04:36:06.023
67 4.0.5.3123 2024.06.24 c27c6 P P 1780 1150 2024.07.09 05:32:19.624 2024.07.09 05:32:21.404 2024.07.09 04:34:43.898 2024.07.09 04:34:45.048
68 4.0.5.3112 2024.06.13 d2e61 P P 1777 1278 2024.06.21 22:07:07.343 2024.06.21 22:07:09.120 2024.06.21 21:06:44.351 2024.06.21 21:06:45.629
69 4.0.5.3109 2024.06.12 de9c0 P P 1828 843 2024.06.13 02:59:14.169 2024.06.13 02:59:15.997 2024.06.13 02:07:54.940 2024.06.13 02:07:55.783
70 4.0.5.3109 2024.06.09 569cf P P 1828 828 2024.06.11 02:59:32.403 2024.06.11 02:59:34.231 2024.06.11 02:08:07.035 2024.06.11 02:08:07.863
71 4.0.5.3103 2024.05.24 61480 P P 1828 844 2024.05.25 02:56:27.178 2024.05.25 02:56:29.006 2024.05.25 02:05:31.337 2024.05.25 02:05:32.181
72 4.0.5.3100 2024.05.15 2dc0d P P 1844 843 2024.05.24 02:58:52.383 2024.05.24 02:58:54.227 2024.05.24 02:07:02.569 2024.05.24 02:07:03.412
73 4.0.5.3098 2024.05.09 4c3ec P P 1797 859 2024.05.15 02:54:53.853 2024.05.15 02:54:55.650 2024.05.15 02:04:08.466 2024.05.15 02:04:09.325
74 4.0.5.3097 2024.05.08 ec699 P P 1835 844 2024.05.09 14:42:46.167 2024.05.09 14:42:48.002 2024.05.09 13:51:57.736 2024.05.09 13:51:58.580
75 4.0.5.3092 2024.05.06 bbc47 P P 1813 844 2024.05.08 02:55:26.223 2024.05.08 02:55:28.036 2024.05.08 02:04:44.350 2024.05.08 02:04:45.194
76 4.0.5.3091 2024.04.29 062a7 P P 1797 844 2024.04.30 02:53:13.396 2024.04.30 02:53:15.193 2024.04.30 02:02:50.165 2024.04.30 02:02:51.009
77 4.0.5.3089 2024.04.19 08c92 P P 1797 843 2024.04.29 02:53:34.138 2024.04.29 02:53:35.935 2024.04.29 02:02:58.480 2024.04.29 02:02:59.323
78 4.0.5.3088 2024.04.17 c4484 P P 1828 843 2024.04.19 02:53:37.807 2024.04.19 02:53:39.635 2024.04.19 02:02:45.270 2024.04.19 02:02:46.113
79 4.0.5.3086 2024.04.16 434ab P P 1812 844 2024.04.17 02:50:37.073 2024.04.17 02:50:38.885 2024.04.17 02:00:19.777 2024.04.17 02:00:20.621
80 4.0.5.3083 2024.03.31 6ee48 P P 1781 844 2024.04.13 02:46:01.548 2024.04.13 02:46:03.329 2024.04.13 01:55:55.570 2024.04.13 01:55:56.414
81 4.0.5.3082 2024.03.31 c768b P P 1531 782 2024.04.04 14:22:41.365 2024.04.04 14:22:42.896 2024.04.04 13:35:55.961 2024.04.04 13:35:56.743
82 4.0.5.3082 2024.03.25 af9dc P P 1718 796 2024.03.29 02:03:06.506 2024.03.29 02:03:08.224 2024.03.29 01:14:14.630 2024.03.29 01:14:15.426
83 4.0.5.3081 2024.03.22 17cd2 P P 1734 781 2024.03.24 03:37:38.137 2024.03.24 03:37:39.871 2024.03.24 02:47:42.924 2024.03.24 02:47:43.705
84 4.0.5.3080 2024.03.22 5d44e P P 1531 796 2024.03.22 16:22:23.199 2024.03.22 16:22:24.730 2024.03.22 15:35:17.959 2024.03.22 15:35:18.755
85 4.0.5.3080 2024.03.17 17edd P P 1531 796 2024.03.20 19:49:32.537 2024.03.20 19:49:34.068 2024.03.20 19:02:31.136 2024.03.20 19:02:31.932

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):