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_12261')
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_12261\\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_12261\\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 602 2422 2025.06.26 08:12:38.811 2025.06.26 08:12:39.413 2025.06.26 07:08:51.737 2025.06.26 07:08:54.159
2 4.0.6.3214 2025.06.21 e11f6 P P 605 426 2025.06.25 12:51:44.454 2025.06.25 12:51:45.059 2025.06.25 11:49:12.022 2025.06.25 11:49:12.448
3 4.0.6.3213 2025.06.14 f015c P P 648 423 2025.06.21 07:52:21.587 2025.06.21 07:52:22.235 2025.06.21 06:49:31.221 2025.06.21 06:49:31.644
4 4.0.6.3212 2025.06.11 bc50d P P 646 420 2025.06.14 08:20:01.914 2025.06.14 08:20:02.560 2025.06.14 07:16:33.478 2025.06.14 07:16:33.898
5 4.0.6.3208 2025.06.10 19fe3 P P 635 422 2025.06.11 06:46:56.019 2025.06.11 06:46:56.654 2025.06.11 05:44:32.702 2025.06.11 05:44:33.124
6 4.0.6.3207 2025.06.07 205ff P P 636 405 2025.06.10 06:48:23.239 2025.06.10 06:48:23.875 2025.06.10 05:45:11.347 2025.06.10 05:45:11.752
7 4.0.6.3206 2025.05.22 d7d10 P P 603 407 2025.06.06 06:41:57.687 2025.06.06 06:41:58.290 2025.06.06 05:40:10.517 2025.06.06 05:40:10.924
8 4.0.6.3205 2025.05.07 00148 P P 609 406 2025.05.18 06:29:15.164 2025.05.18 06:29:15.773 2025.05.18 05:29:18.880 2025.05.18 05:29:19.286
9 4.0.6.3204 2025.05.06 35b85 P P 628 407 2025.05.07 06:37:27.943 2025.05.07 06:37:28.571 2025.05.07 05:36:12.964 2025.05.07 05:36:13.371
10 4.0.6.3203 2025.05.05 c2cbd P P 628 408 2025.05.06 06:37:45.775 2025.05.06 06:37:46.403 2025.05.06 05:36:20.397 2025.05.06 05:36:20.805
11 4.0.6.3200 2025.04.18 7ef56 P P 616 412 2025.04.26 06:42:19.918 2025.04.26 06:42:20.534 2025.04.26 05:40:36.834 2025.04.26 05:40:37.246
12 4.0.6.3199 2025.04.14 33a10 P P 621 423 2025.04.17 06:40:00.596 2025.04.17 06:40:01.217 2025.04.17 05:38:03.218 2025.04.17 05:38:03.641
13 4.0.6.3198 2025.04.13 64a7f P P 611 405 2025.04.14 06:38:10.640 2025.04.14 06:38:11.251 2025.04.14 05:36:23.823 2025.04.14 05:36:24.228
14 4.0.6.3195 2025.04.12 82cb5 P P 594 391 2025.04.13 06:22:55.831 2025.04.13 06:22:56.425 2025.04.13 05:23:36.820 2025.04.13 05:23:37.211
15 4.0.6.3195 2025.03.28 b9faf P P 600 407 2025.04.12 06:43:09.560 2025.04.12 06:43:10.160 2025.04.12 05:40:27.460 2025.04.12 05:40:27.867
16 4.0.6.3194 2025.03.27 ab754 P P 668 428 2025.03.28 06:55:45.695 2025.03.28 06:55:46.363 2025.03.28 05:52:38.727 2025.03.28 05:52:39.155
17 4.0.6.3194 2025.03.26 912aa P P 621 457 2025.03.27 06:46:05.807 2025.03.27 06:46:06.428 2025.03.27 05:41:43.071 2025.03.27 05:41:43.528
18 4.0.6.3193 2025.03.20 80234 P P 642 443 2025.03.24 06:46:35.738 2025.03.24 06:46:36.380 2025.03.24 05:41:53.652 2025.03.24 05:41:54.095
19 4.0.6.3192 2025.03.13 2a9da P P 655 410 2025.03.20 06:33:47.616 2025.03.20 06:33:48.271 2025.03.20 05:31:10.389 2025.03.20 05:31:10.799
20 4.0.6.3191 2025.03.10 3d9fd P P 627 422 2025.03.13 06:41:25.061 2025.03.13 06:41:25.688 2025.03.13 05:37:14.725 2025.03.13 05:37:15.147
21 4.0.6.3190 2025.02.25 c9928 P P 639 428 2025.03.09 06:38:11.563 2025.03.09 06:38:12.202 2025.03.09 05:34:11.414 2025.03.09 05:34:11.842
22 4.0.6.3189 2025.02.22 3fb0b P P 611 413 2025.02.25 06:27:04.276 2025.02.25 06:27:04.887 2025.02.25 05:24:44.526 2025.02.25 05:24:44.939
23 4.0.6.3188 2025.02.21 8ee1c P P 649 405 2025.02.22 06:20:41.221 2025.02.22 06:20:41.870 2025.02.22 05:18:44.701 2025.02.22 05:18:45.106
24 4.0.6.3186 2025.02.19 92cb6 P P 645 425 2025.02.20 04:18:28.674 2025.02.20 04:18:29.319 2025.02.20 03:15:53.644 2025.02.20 03:15:54.069
25 4.0.6.3185 2025.02.16 9cac4 P P 625 406 2025.02.17 02:05:45.406 2025.02.17 02:05:46.031 2025.02.17 01:03:59.313 2025.02.17 01:03:59.719
26 4.0.6.3183 2025.02.04 bf738 P P 607 405 2025.02.08 06:24:28.258 2025.02.08 06:24:28.865 2025.02.08 05:22:16.525 2025.02.08 05:22:16.930
27 4.0.6.3181 2025.02.01 00b64 P P 608 413 2025.02.04 06:37:58.474 2025.02.04 06:37:59.082 2025.02.04 05:35:37.918 2025.02.04 05:35:38.331
28 4.0.6.3180 2025.01.27 2edb8 P P 609 403 2025.01.28 06:21:03.001 2025.01.28 06:21:03.610 2025.01.28 05:19:27.470 2025.01.28 05:19:27.873
29 4.0.6.3179 2025.01.24 008d4 P P 598 405 2025.01.25 04:11:17.030 2025.01.25 04:11:17.628 2025.01.25 03:09:42.013 2025.01.25 03:09:42.418
30 4.0.6.3178 2025.01.20 ec94d P P 602 409 2025.01.24 06:21:46.054 2025.01.24 06:21:46.656 2025.01.24 05:20:01.560 2025.01.24 05:20:01.969
31 4.0.6.3176 2025.01.16 79cc1 P P 607 411 2025.01.20 06:20:32.487 2025.01.20 06:20:33.094 2025.01.20 05:18:50.856 2025.01.20 05:18:51.267
32 4.0.6.3175 2025.01.15 91361 P P 607 414 2025.01.16 06:24:19.525 2025.01.16 06:24:20.132 2025.01.16 05:22:15.636 2025.01.16 05:22:16.050
33 4.0.6.3174 2024.12.23 ffd39 P P 639 407 2025.01.15 06:17:49.099 2025.01.15 06:17:49.738 2025.01.15 05:15:44.457 2025.01.15 05:15:44.864
34 4.0.6.3173 2024.12.19 60b32 P P 614 426 2024.12.21 17:17:38.604 2024.12.21 17:17:39.218 2024.12.21 16:15:28.804 2024.12.21 16:15:29.230
35 4.0.6.3172 2024.12.11 33f5d P P 607 407 2024.12.16 06:19:51.679 2024.12.16 06:19:52.286 2024.12.16 05:18:04.954 2024.12.16 05:18:05.361
36 4.0.6.3171 2024.12.10 ab1d4 P P 611 402 2024.12.11 06:22:16.100 2024.12.11 06:22:16.711 2024.12.11 05:20:20.613 2024.12.11 05:20:21.015
37 4.0.6.3170 2024.12.02 68abd P P 640 404 2024.12.04 06:11:06.192 2024.12.04 06:11:06.832 2024.12.04 05:10:26.264 2024.12.04 05:10:26.668
38 4.0.6.3169 2024.11.28 1673f P P 606 407 2024.11.30 06:09:06.090 2024.11.30 06:09:06.696 2024.11.30 05:08:31.844 2024.11.30 05:08:32.251
39 4.0.6.3168 2024.11.27 7fffc P P 630 409 2024.11.28 06:05:01.869 2024.11.28 06:05:02.499 2024.11.28 05:05:09.793 2024.11.28 05:05:10.202
40 4.0.6.3168 2024.11.07 f67e2 P P 604 408 2024.11.27 06:07:31.323 2024.11.27 06:07:31.927 2024.11.27 05:06:51.039 2024.11.27 05:06:51.447
41 4.0.6.3167 2024.11.04 c9228 P P 597 411 2024.11.05 06:00:23.230 2024.11.05 06:00:23.827 2024.11.05 05:00:47.804 2024.11.05 05:00:48.215
42 4.0.6.3165 2024.10.23 b0c36 P P 605 408 2024.11.04 11:50:12.101 2024.11.04 11:50:12.706 2024.11.04 10:50:27.053 2024.11.04 10:50:27.461
43 4.0.6.3164 2024.10.17 35344 P P 624 415 2024.10.23 06:09:37.409 2024.10.23 06:09:38.033 2024.10.23 05:09:15.095 2024.10.23 05:09:15.510
44 4.0.6.3161 2024.10.05 91502 P P 613 396 2024.10.15 06:06:47.377 2024.10.15 06:06:47.990 2024.10.15 05:06:51.568 2024.10.15 05:06:51.964
45 4.0.6.3159 2024.10.01 85136 P P 630 410 2024.10.05 06:10:43.327 2024.10.05 06:10:43.957 2024.10.05 05:09:44.732 2024.10.05 05:09:45.142
46 4.0.6.3158 2024.09.30 14c68 P P 609 412 2024.10.01 06:08:52.396 2024.10.01 06:08:53.005 2024.10.01 05:07:58.168 2024.10.01 05:07:58.580
47 4.0.6.3157 2024.09.24 3bb2e P P 635 408 2024.09.30 06:08:30.220 2024.09.30 06:08:30.855 2024.09.30 05:07:57.014 2024.09.30 05:07:57.422
48 4.0.6.3156 2024.09.21 f6416 P P 642 404 2024.09.24 06:07:51.025 2024.09.24 06:07:51.667 2024.09.24 05:07:24.457 2024.09.24 05:07:24.861
49 4.0.6.3155 2024.09.20 1ed0c P P 607 423 2024.09.21 06:09:21.580 2024.09.21 06:09:22.187 2024.09.21 05:08:34.120 2024.09.21 05:08:34.543
50 4.0.6.3151 2024.09.09 1b77f P P 613 409 2024.09.17 06:06:38.316 2024.09.17 06:06:38.929 2024.09.17 05:06:56.643 2024.09.17 05:06:57.052
51 4.0.6.3149 2024.09.04 32ce9 P P 602 419 2024.09.08 04:07:35.070 2024.09.08 04:07:35.672 2024.09.08 03:06:54.912 2024.09.08 03:06:55.331
52 4.0.6.3148 2024.09.02 4be5c P P 620 431 2024.09.04 06:10:14.388 2024.09.04 06:10:15.008 2024.09.04 05:09:10.045 2024.09.04 05:09:10.476
53 4.0.6.3147 2024.08.30 5ffd7 P P 658 412 2024.09.02 05:59:38.093 2024.09.02 05:59:38.751 2024.09.02 04:58:50.882 2024.09.02 04:58:51.294
54 4.0.6.3146 2024.08.27 38582 P P 612 413 2024.08.30 05:54:31.565 2024.08.30 05:54:32.177 2024.08.30 04:53:44.580 2024.08.30 04:53:44.993
55 4.0.6.3145 2024.08.21 87240 P P 619 406 2024.08.27 05:49:37.725 2024.08.27 05:49:38.344 2024.08.27 04:48:58.888 2024.08.27 04:48:59.294
56 4.0.6.3144 2024.08.20 5a3b7 P P 614 424 2024.08.21 05:47:32.104 2024.08.21 05:47:32.718 2024.08.21 04:46:32.983 2024.08.21 04:46:33.407
57 4.0.6.3142 2024.08.11 b9f39 P P 703 441 2024.08.19 05:57:44.095 2024.08.19 05:57:44.798 2024.08.19 04:54:53.662 2024.08.19 04:54:54.103
58 4.0.6.3141 2024.08.09 6d39f P P 739 463 2024.08.11 03:51:39.193 2024.08.11 03:51:39.932 2024.08.11 02:48:27.780 2024.08.11 02:48:28.243
59 4.0.5.3140 2024.08.06 64f3a P P 770 448 2024.08.10 21:38:42.620 2024.08.10 21:38:43.390 2024.08.10 20:31:50.911 2024.08.10 20:31:51.359
60 4.0.5.3139 2024.08.01 3bc8b P P 505 322 2024.08.06 03:42:57.195 2024.08.06 03:42:57.700 2024.08.06 02:44:42.543 2024.08.06 02:44:42.865
61 4.0.5.3136 2024.07.31 e41ec P P 486 328 2024.08.01 12:14:37.644 2024.08.01 12:14:38.130 2024.08.01 11:18:32.060 2024.08.01 11:18:32.388
62 4.0.5.3135 2024.07.26 b4981 P P 489 330 2024.07.30 05:23:32.610 2024.07.30 05:23:33.099 2024.07.30 04:27:42.543 2024.07.30 04:27:42.873
63 4.0.5.3129 2024.07.24 b8184 P P 488 332 2024.07.25 05:23:13.482 2024.07.25 05:23:13.970 2024.07.25 04:27:21.074 2024.07.25 04:27:21.406
64 4.0.5.3128 2024.07.13 aa318 P P 485 332 2024.07.24 05:50:13.255 2024.07.24 05:50:13.740 2024.07.24 04:54:09.669 2024.07.24 04:54:10.001
65 4.0.5.3127 2024.07.10 eace3 P P 484 313 2024.07.13 05:19:41.460 2024.07.13 05:19:41.944 2024.07.13 04:24:37.211 2024.07.13 04:24:37.524
66 4.0.5.3123 2024.07.09 070ee P P 555 329 2024.07.10 05:34:25.986 2024.07.10 05:34:26.541 2024.07.10 04:37:01.315 2024.07.10 04:37:01.644
67 4.0.5.3123 2024.06.24 c27c6 P P 482 325 2024.07.09 05:33:44.712 2024.07.09 05:33:45.194 2024.07.09 04:35:40.615 2024.07.09 04:35:40.940
68 4.0.5.3112 2024.06.13 d2e61 P P 494 385 2024.06.21 22:08:32.793 2024.06.21 22:08:33.287 2024.06.21 21:10:00.728 2024.06.21 21:10:01.113
69 4.0.5.3109 2024.06.12 de9c0 P P 438 250 2024.06.13 03:00:34.662 2024.06.13 03:00:35.100 2024.06.13 02:08:40.038 2024.06.13 02:08:40.288
70 4.0.5.3109 2024.06.09 569cf P P 484 250 2024.06.11 03:00:53.146 2024.06.11 03:00:53.630 2024.06.11 02:08:52.009 2024.06.11 02:08:52.259
71 4.0.5.3103 2024.05.24 61480 P P 469 251 2024.05.25 02:57:47.999 2024.05.25 02:57:48.468 2024.05.25 02:06:16.341 2024.05.25 02:06:16.592
72 4.0.5.3100 2024.05.15 2dc0d P P 453 250 2024.05.24 03:00:12.298 2024.05.24 03:00:12.751 2024.05.24 02:07:47.636 2024.05.24 02:07:47.886
73 4.0.5.3098 2024.05.09 4c3ec P P 453 250 2024.05.15 02:56:13.611 2024.05.15 02:56:14.064 2024.05.15 02:04:53.471 2024.05.15 02:04:53.721
74 4.0.5.3097 2024.05.08 ec699 P P 469 250 2024.05.09 14:44:05.848 2024.05.09 14:44:06.317 2024.05.09 13:52:42.835 2024.05.09 13:52:43.085
75 4.0.5.3092 2024.05.06 bbc47 P P 484 235 2024.05.08 02:56:46.107 2024.05.08 02:56:46.591 2024.05.08 02:05:29.464 2024.05.08 02:05:29.699
76 4.0.5.3091 2024.04.29 062a7 P P 469 235 2024.04.30 02:54:32.748 2024.04.30 02:54:33.217 2024.04.30 02:03:35.013 2024.04.30 02:03:35.248
77 4.0.5.3089 2024.04.19 08c92 P P 453 250 2024.04.29 02:54:54.648 2024.04.29 02:54:55.101 2024.04.29 02:03:44.907 2024.04.29 02:03:45.157
78 4.0.5.3088 2024.04.17 c4484 P P 469 250 2024.04.19 02:54:56.049 2024.04.19 02:54:56.518 2024.04.19 02:03:28.868 2024.04.19 02:03:29.118
79 4.0.5.3086 2024.04.16 434ab P P 453 234 2024.04.17 02:51:54.034 2024.04.17 02:51:54.487 2024.04.17 02:01:03.376 2024.04.17 02:01:03.610
80 4.0.5.3083 2024.03.31 6ee48 P P 453 235 2024.04.13 02:47:18.681 2024.04.13 02:47:19.134 2024.04.13 01:56:39.325 2024.04.13 01:56:39.560
81 4.0.5.3082 2024.03.31 c768b P P 406 234 2024.04.04 14:23:50.075 2024.04.04 14:23:50.481 2024.04.04 13:36:37.591 2024.04.04 13:36:37.825
82 4.0.5.3082 2024.03.25 af9dc P P 405 234 2024.03.29 02:04:21.514 2024.03.29 02:04:21.919 2024.03.29 01:14:56.400 2024.03.29 01:14:56.634
83 4.0.5.3081 2024.03.22 17cd2 P P 436 233 2024.03.24 03:38:53.052 2024.03.24 03:38:53.488 2024.03.24 02:48:24.710 2024.03.24 02:48:24.943
84 4.0.5.3080 2024.03.22 5d44e P P 405 233 2024.03.22 16:23:30.691 2024.03.22 16:23:31.096 2024.03.22 15:35:59.667 2024.03.22 15:35:59.900
85 4.0.5.3080 2024.03.17 17edd P P 406 233 2024.03.20 19:50:40.169 2024.03.20 19:50:40.575 2024.03.20 19:03:12.688 2024.03.20 19:03:12.921

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):