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_12293')
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_12293\\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_12293\\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 7270 2426 2025.06.26 08:15:28.567 2025.06.26 08:15:35.837 2025.06.26 07:10:24.152 2025.06.26 07:10:26.578
2 4.0.6.3214 2025.06.21 e11f6 P P 8265 5909 2025.06.25 12:54:29.856 2025.06.25 12:54:38.121 2025.06.25 11:51:21.325 2025.06.25 11:51:27.234
3 4.0.6.3213 2025.06.14 f015c P P 8258 5916 2025.06.21 07:55:12.181 2025.06.21 07:55:20.439 2025.06.21 06:51:40.105 2025.06.21 06:51:46.021
4 4.0.6.3212 2025.06.11 bc50d P P 8302 5896 2025.06.14 08:22:52.540 2025.06.14 08:23:00.842 2025.06.14 07:18:39.825 2025.06.14 07:18:45.721
5 4.0.6.3208 2025.06.10 19fe3 P P 8298 5980 2025.06.11 06:49:41.692 2025.06.11 06:49:49.990 2025.06.11 05:46:43.780 2025.06.11 05:46:49.760
6 4.0.6.3207 2025.06.07 205ff P P 8310 5895 2025.06.10 06:51:11.254 2025.06.10 06:51:19.564 2025.06.10 05:47:18.003 2025.06.10 05:47:23.898
7 4.0.6.3206 2025.05.22 d7d10 P P 8264 5955 2025.06.06 06:44:43.725 2025.06.06 06:44:51.989 2025.06.06 05:42:16.654 2025.06.06 05:42:22.609
8 4.0.6.3205 2025.05.07 00148 P P 8141 5802 2025.05.18 06:32:03.168 2025.05.18 06:32:11.309 2025.05.18 05:31:21.880 2025.05.18 05:31:27.682
9 4.0.6.3204 2025.05.06 35b85 P P 7230 5905 2025.05.07 06:40:13.054 2025.05.07 06:40:20.284 2025.05.07 05:38:19.768 2025.05.07 05:38:25.673
10 4.0.6.3203 2025.05.05 c2cbd P P 6285 6016 2025.05.06 06:40:15.490 2025.05.06 06:40:21.775 2025.05.06 05:38:26.646 2025.05.06 05:38:32.662
11 4.0.6.3200 2025.04.18 7ef56 P P 7291 5910 2025.04.26 06:44:47.664 2025.04.26 06:44:54.955 2025.04.26 05:42:43.032 2025.04.26 05:42:48.942
12 4.0.6.3199 2025.04.14 33a10 P P 7776 5937 2025.04.17 06:42:31.860 2025.04.17 06:42:39.636 2025.04.17 05:40:09.923 2025.04.17 05:40:15.860
13 4.0.6.3198 2025.04.13 64a7f P P 6298 5901 2025.04.14 06:40:41.558 2025.04.14 06:40:47.856 2025.04.14 05:38:30.188 2025.04.14 05:38:36.089
14 4.0.6.3195 2025.04.12 82cb5 P P 6269 5831 2025.04.13 06:25:35.571 2025.04.13 06:25:41.840 2025.04.13 05:25:40.624 2025.04.13 05:25:46.455
15 4.0.6.3195 2025.03.28 b9faf P P 7313 5792 2025.04.12 06:45:45.299 2025.04.12 06:45:52.612 2025.04.12 05:42:34.519 2025.04.12 05:42:40.311
16 4.0.6.3194 2025.03.27 ab754 P P 7319 5947 2025.03.28 06:58:27.663 2025.03.28 06:58:34.982 2025.03.28 05:54:47.036 2025.03.28 05:54:52.983
17 4.0.6.3194 2025.03.26 912aa P P 7299 6038 2025.03.27 06:48:37.867 2025.03.27 06:48:45.166 2025.03.27 05:43:52.782 2025.03.27 05:43:58.820
18 4.0.6.3193 2025.03.20 80234 P P 6312 6491 2025.03.24 06:49:12.743 2025.03.24 06:49:19.055 2025.03.24 05:44:04.458 2025.03.24 05:44:10.949
19 4.0.6.3192 2025.03.13 2a9da P P 6295 5937 2025.03.20 06:36:12.269 2025.03.20 06:36:18.564 2025.03.20 05:33:17.279 2025.03.20 05:33:23.216
20 4.0.6.3191 2025.03.10 3d9fd P P 6484 7109 2025.03.13 06:44:02.517 2025.03.13 06:44:09.001 2025.03.13 05:39:24.806 2025.03.13 05:39:31.915
21 4.0.6.3190 2025.02.25 c9928 P P 7333 5913 2025.03.09 06:40:51.461 2025.03.09 06:40:58.794 2025.03.09 05:36:18.003 2025.03.09 05:36:23.916
22 4.0.6.3189 2025.02.22 3fb0b P P 8256 5932 2025.02.25 06:29:30.215 2025.02.25 06:29:38.471 2025.02.25 05:26:52.301 2025.02.25 05:26:58.233
23 4.0.6.3188 2025.02.21 8ee1c P P 6274 5957 2025.02.22 06:23:10.073 2025.02.22 06:23:16.347 2025.02.22 05:20:52.144 2025.02.22 05:20:58.101
24 4.0.6.3186 2025.02.19 92cb6 P P 6334 5918 2025.02.20 04:21:05.078 2025.02.20 04:21:11.412 2025.02.20 03:18:00.487 2025.02.20 03:18:06.405
25 4.0.6.3185 2025.02.16 9cac4 P P 6350 5926 2025.02.17 02:08:13.893 2025.02.17 02:08:20.243 2025.02.17 01:06:06.760 2025.02.17 01:06:12.686
26 4.0.6.3183 2025.02.04 bf738 P P 6377 5954 2025.02.08 06:27:01.568 2025.02.08 06:27:07.945 2025.02.08 05:24:24.887 2025.02.08 05:24:30.841
27 4.0.6.3181 2025.02.01 00b64 P P 7297 5925 2025.02.04 06:40:29.289 2025.02.04 06:40:36.586 2025.02.04 05:37:45.105 2025.02.04 05:37:51.030
28 4.0.6.3180 2025.01.27 2edb8 P P 6328 5917 2025.01.28 06:23:29.525 2025.01.28 06:23:35.853 2025.01.28 05:21:34.380 2025.01.28 05:21:40.297
29 4.0.6.3179 2025.01.24 008d4 P P 6312 5911 2025.01.25 04:13:42.385 2025.01.25 04:13:48.697 2025.01.25 03:11:48.647 2025.01.25 03:11:54.558
30 4.0.6.3178 2025.01.20 ec94d P P 7270 5903 2025.01.24 06:24:10.410 2025.01.24 06:24:17.680 2025.01.24 05:22:07.996 2025.01.24 05:22:13.899
31 4.0.6.3176 2025.01.16 79cc1 P P 7318 5938 2025.01.20 06:23:04.713 2025.01.20 06:23:12.031 2025.01.20 05:20:57.308 2025.01.20 05:21:03.246
32 4.0.6.3175 2025.01.15 91361 P P 8281 5893 2025.01.16 06:26:46.503 2025.01.16 06:26:54.784 2025.01.16 05:24:22.206 2025.01.16 05:24:28.099
33 4.0.6.3174 2024.12.23 ffd39 P P 6294 5938 2025.01.15 06:20:20.794 2025.01.15 06:20:27.088 2025.01.15 05:17:50.809 2025.01.15 05:17:56.747
34 4.0.6.3173 2024.12.19 60b32 P P 7362 5908 2024.12.21 17:20:21.636 2024.12.21 17:20:28.998 2024.12.21 16:17:35.250 2024.12.21 16:17:41.158
35 4.0.6.3172 2024.12.11 33f5d P P 6270 5899 2024.12.16 06:22:22.117 2024.12.16 06:22:28.387 2024.12.16 05:20:11.525 2024.12.16 05:20:17.424
36 4.0.6.3171 2024.12.10 ab1d4 P P 7305 5930 2024.12.11 06:24:49.369 2024.12.11 06:24:56.674 2024.12.11 05:22:27.675 2024.12.11 05:22:33.605
37 4.0.6.3170 2024.12.02 68abd P P 6306 5958 2024.12.04 06:13:38.641 2024.12.04 06:13:44.947 2024.12.04 05:12:37.718 2024.12.04 05:12:43.676
38 4.0.6.3169 2024.11.28 1673f P P 6322 5887 2024.11.30 06:11:43.863 2024.11.30 06:11:50.185 2024.11.30 05:10:38.384 2024.11.30 05:10:44.271
39 4.0.6.3168 2024.11.27 7fffc P P 7297 6292 2024.11.28 06:07:31.891 2024.11.28 06:07:39.188 2024.11.28 05:07:17.155 2024.11.28 05:07:23.447
40 4.0.6.3168 2024.11.07 f67e2 P P 6330 5963 2024.11.27 06:10:07.674 2024.11.27 06:10:14.004 2024.11.27 05:09:06.672 2024.11.27 05:09:12.635
41 4.0.6.3167 2024.11.04 c9228 P P 6640 5929 2024.11.05 06:02:55.144 2024.11.05 06:03:01.784 2024.11.05 05:02:54.335 2024.11.05 05:03:00.264
42 4.0.6.3165 2024.10.23 b0c36 P P 6670 5898 2024.11.04 11:52:45.616 2024.11.04 11:52:52.286 2024.11.04 10:52:34.757 2024.11.04 10:52:40.655
43 4.0.6.3164 2024.10.17 35344 P P 7305 5933 2024.10.23 06:12:11.935 2024.10.23 06:12:19.240 2024.10.23 05:11:22.613 2024.10.23 05:11:28.546
44 4.0.6.3161 2024.10.05 91502 P P 6301 5913 2024.10.15 06:09:19.528 2024.10.15 06:09:25.829 2024.10.15 05:08:58.354 2024.10.15 05:09:04.267
45 4.0.6.3159 2024.10.01 85136 P P 8810 5930 2024.10.05 06:13:21.006 2024.10.05 06:13:29.816 2024.10.05 05:11:51.572 2024.10.05 05:11:57.502
46 4.0.6.3158 2024.09.30 14c68 P P 7307 5907 2024.10.01 06:11:23.763 2024.10.01 06:11:31.070 2024.10.01 05:10:05.029 2024.10.01 05:10:10.936
47 4.0.6.3157 2024.09.24 3bb2e P P 7701 5939 2024.09.30 06:11:10.491 2024.09.30 06:11:18.192 2024.09.30 05:10:05.824 2024.09.30 05:10:11.763
48 4.0.6.3156 2024.09.21 f6416 P P 7315 5928 2024.09.24 06:10:26.837 2024.09.24 06:10:34.152 2024.09.24 05:09:33.793 2024.09.24 05:09:39.721
49 4.0.6.3155 2024.09.20 1ed0c P P 7276 5925 2024.09.21 06:11:50.580 2024.09.21 06:11:57.856 2024.09.21 05:10:43.192 2024.09.21 05:10:49.117
50 4.0.6.3151 2024.09.09 1b77f P P 7314 6073 2024.09.17 06:09:11.141 2024.09.17 06:09:18.455 2024.09.17 05:09:03.855 2024.09.17 05:09:09.928
51 4.0.6.3149 2024.09.04 32ce9 P P 6308 6358 2024.09.08 04:10:04.026 2024.09.08 04:10:10.334 2024.09.08 03:09:01.986 2024.09.08 03:09:08.344
52 4.0.6.3148 2024.09.02 4be5c P P 8306 5934 2024.09.04 06:12:51.859 2024.09.04 06:13:00.165 2024.09.04 05:11:16.982 2024.09.04 05:11:22.916
53 4.0.6.3147 2024.08.30 5ffd7 P P 7376 6929 2024.09.02 06:02:10.030 2024.09.02 06:02:17.406 2024.09.02 05:01:00.000 2024.09.02 05:01:06.929
54 4.0.6.3146 2024.08.27 38582 P P 7297 6002 2024.08.30 05:57:05.711 2024.08.30 05:57:13.008 2024.08.30 04:55:51.102 2024.08.30 04:55:57.104
55 4.0.6.3145 2024.08.21 87240 P P 7329 5921 2024.08.27 05:52:09.428 2024.08.27 05:52:16.757 2024.08.27 04:51:08.117 2024.08.27 04:51:14.038
56 4.0.6.3144 2024.08.20 5a3b7 P P 8298 5925 2024.08.21 05:50:17.811 2024.08.21 05:50:26.109 2024.08.21 04:48:40.502 2024.08.21 04:48:46.427
57 4.0.6.3142 2024.08.11 b9f39 P P 8361 5937 2024.08.19 06:00:33.027 2024.08.19 06:00:41.388 2024.08.19 04:57:01.169 2024.08.19 04:57:07.106
58 4.0.6.3141 2024.08.09 6d39f P P 8377 5998 2024.08.11 03:54:27.393 2024.08.11 03:54:35.770 2024.08.11 02:50:38.076 2024.08.11 02:50:44.074
59 4.0.5.3140 2024.08.06 64f3a P P 8094 5974 2024.08.10 21:41:32.717 2024.08.10 21:41:40.811 2024.08.10 20:33:59.348 2024.08.10 20:34:05.322
60 4.0.5.3139 2024.08.01 3bc8b P P 7266 5879 2024.08.06 03:45:28.559 2024.08.06 03:45:35.825 2024.08.06 02:46:50.971 2024.08.06 02:46:56.850
61 4.0.5.3136 2024.07.31 e41ec P P 6705 5831 2024.08.01 12:17:06.956 2024.08.01 12:17:13.661 2024.08.01 11:20:38.442 2024.08.01 11:20:44.273
62 4.0.5.3135 2024.07.26 b4981 P P 6747 5829 2024.07.30 05:26:01.775 2024.07.30 05:26:08.522 2024.07.30 04:29:47.337 2024.07.30 04:29:53.166
63 4.0.5.3129 2024.07.24 b8184 P P 6910 5879 2024.07.25 05:25:42.668 2024.07.25 05:25:49.578 2024.07.25 04:29:26.554 2024.07.25 04:29:32.433
64 4.0.5.3128 2024.07.13 aa318 P P 6698 5850 2024.07.24 05:52:42.094 2024.07.24 05:52:48.792 2024.07.24 04:56:15.569 2024.07.24 04:56:21.419
65 4.0.5.3127 2024.07.10 eace3 P P 6476 5758 2024.07.13 05:22:05.533 2024.07.13 05:22:12.009 2024.07.13 04:26:39.839 2024.07.13 04:26:45.597
66 4.0.5.3123 2024.07.09 070ee P P 6705 5829 2024.07.10 05:36:55.482 2024.07.10 05:37:02.187 2024.07.10 04:39:06.146 2024.07.10 04:39:11.975
67 4.0.5.3123 2024.06.24 c27c6 P P 6791 5843 2024.07.09 05:36:15.581 2024.07.09 05:36:22.372 2024.07.09 04:37:47.231 2024.07.09 04:37:53.074
68 4.0.5.3112 2024.06.13 d2e61 P P 6691 5894 2024.06.21 22:11:02.850 2024.06.21 22:11:09.541 2024.06.21 21:12:23.788 2024.06.21 21:12:29.682
69 4.0.5.3109 2024.06.12 de9c0 P P 6517 5594 2024.06.13 03:02:57.713 2024.06.13 03:03:04.230 2024.06.13 02:10:38.677 2024.06.13 02:10:44.271
70 4.0.5.3109 2024.06.09 569cf P P 6532 5595 2024.06.11 03:03:16.255 2024.06.11 03:03:22.787 2024.06.11 02:10:50.513 2024.06.11 02:10:56.108
71 4.0.5.3103 2024.05.24 61480 P P 6517 5594 2024.05.25 03:00:10.719 2024.05.25 03:00:17.236 2024.05.25 02:08:15.716 2024.05.25 02:08:21.310
72 4.0.5.3100 2024.05.15 2dc0d P P 6500 5595 2024.05.24 03:02:39.019 2024.05.24 03:02:45.519 2024.05.24 02:09:46.150 2024.05.24 02:09:51.745
73 4.0.5.3098 2024.05.09 4c3ec P P 6500 5610 2024.05.15 02:58:37.877 2024.05.15 02:58:44.377 2024.05.15 02:06:51.750 2024.05.15 02:06:57.360
74 4.0.5.3097 2024.05.08 ec699 P P 6532 5626 2024.05.09 14:46:28.553 2024.05.09 14:46:35.085 2024.05.09 13:54:41.160 2024.05.09 13:54:46.786
75 4.0.5.3092 2024.05.06 bbc47 P P 6548 5610 2024.05.08 02:59:09.441 2024.05.08 02:59:15.989 2024.05.08 02:07:27.778 2024.05.08 02:07:33.388
76 4.0.5.3091 2024.04.29 062a7 P P 6516 5611 2024.04.30 02:56:55.159 2024.04.30 02:57:01.675 2024.04.30 02:05:33.169 2024.04.30 02:05:38.780
77 4.0.5.3089 2024.04.19 08c92 P P 6501 5595 2024.04.29 02:57:17.089 2024.04.29 02:57:23.590 2024.04.29 02:05:43.282 2024.04.29 02:05:48.877
78 4.0.5.3088 2024.04.17 c4484 P P 6501 5595 2024.04.19 02:57:19.738 2024.04.19 02:57:26.239 2024.04.19 02:05:27.193 2024.04.19 02:05:32.788
79 4.0.5.3086 2024.04.16 434ab P P 6516 5594 2024.04.17 02:54:16.440 2024.04.17 02:54:22.956 2024.04.17 02:03:01.783 2024.04.17 02:03:07.377
80 4.0.5.3083 2024.03.31 6ee48 P P 6517 5595 2024.04.13 02:49:41.432 2024.04.13 02:49:47.949 2024.04.13 01:58:37.729 2024.04.13 01:58:43.324
81 4.0.5.3082 2024.03.31 c768b P P 6422 5595 2024.04.04 14:26:10.512 2024.04.04 14:26:16.934 2024.04.04 13:38:35.478 2024.04.04 13:38:41.073
82 4.0.5.3082 2024.03.25 af9dc P P 6515 5593 2024.03.29 02:06:44.124 2024.03.29 02:06:50.639 2024.03.29 01:16:54.086 2024.03.29 01:16:59.679
83 4.0.5.3081 2024.03.22 17cd2 P P 6531 5578 2024.03.24 03:41:15.629 2024.03.24 03:41:22.160 2024.03.24 02:50:22.489 2024.03.24 02:50:28.067
84 4.0.5.3080 2024.03.22 5d44e P P 6452 5578 2024.03.22 16:25:50.894 2024.03.22 16:25:57.346 2024.03.22 15:37:57.462 2024.03.22 15:38:03.040
85 4.0.5.3080 2024.03.17 17edd P P 6421 5562 2024.03.20 19:52:59.935 2024.03.20 19:53:06.356 2024.03.20 19:05:10.372 2024.03.20 19:05:15.934

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):