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_12256')
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_12256\\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_12256\\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 2443 2025.06.26 08:12:35.175 2025.06.26 08:12:35.777 2025.06.26 07:08:38.010 2025.06.26 07:08:40.453
2 4.0.6.3214 2025.06.21 e11f6 P P 637 434 2025.06.25 12:51:40.862 2025.06.25 12:51:41.499 2025.06.25 11:49:09.561 2025.06.25 11:49:09.995
3 4.0.6.3213 2025.06.14 f015c P P 634 421 2025.06.21 07:52:17.937 2025.06.21 07:52:18.571 2025.06.21 06:49:28.836 2025.06.21 06:49:29.257
4 4.0.6.3212 2025.06.11 bc50d P P 633 407 2025.06.14 08:19:58.130 2025.06.14 08:19:58.763 2025.06.14 07:16:31.136 2025.06.14 07:16:31.543
5 4.0.6.3208 2025.06.10 19fe3 P P 604 443 2025.06.11 06:46:52.458 2025.06.11 06:46:53.062 2025.06.11 05:44:30.264 2025.06.11 05:44:30.707
6 4.0.6.3207 2025.06.07 205ff P P 639 432 2025.06.10 06:48:19.386 2025.06.10 06:48:20.025 2025.06.10 05:45:08.941 2025.06.10 05:45:09.373
7 4.0.6.3206 2025.05.22 d7d10 P P 604 439 2025.06.06 06:41:54.097 2025.06.06 06:41:54.701 2025.06.06 05:40:08.159 2025.06.06 05:40:08.598
8 4.0.6.3205 2025.05.07 00148 P P 625 391 2025.05.18 06:29:12.179 2025.05.18 06:29:12.804 2025.05.18 05:29:17.036 2025.05.18 05:29:17.427
9 4.0.6.3204 2025.05.06 35b85 P P 603 409 2025.05.07 06:37:25.030 2025.05.07 06:37:25.633 2025.05.07 05:36:11.014 2025.05.07 05:36:11.423
10 4.0.6.3203 2025.05.05 c2cbd P P 637 415 2025.05.06 06:37:42.657 2025.05.06 06:37:43.294 2025.05.06 05:36:18.491 2025.05.06 05:36:18.906
11 4.0.6.3200 2025.04.18 7ef56 P P 620 413 2025.04.26 06:42:16.853 2025.04.26 06:42:17.473 2025.04.26 05:40:34.882 2025.04.26 05:40:35.295
12 4.0.6.3199 2025.04.14 33a10 P P 632 412 2025.04.17 06:39:57.547 2025.04.17 06:39:58.179 2025.04.17 05:38:01.257 2025.04.17 05:38:01.669
13 4.0.6.3198 2025.04.13 64a7f P P 608 404 2025.04.14 06:38:07.624 2025.04.14 06:38:08.232 2025.04.14 05:36:21.897 2025.04.14 05:36:22.301
14 4.0.6.3195 2025.04.12 82cb5 P P 578 391 2025.04.13 06:22:53.019 2025.04.13 06:22:53.597 2025.04.13 05:23:34.992 2025.04.13 05:23:35.383
15 4.0.6.3195 2025.03.28 b9faf P P 606 398 2025.04.12 06:43:06.594 2025.04.12 06:43:07.200 2025.04.12 05:40:25.564 2025.04.12 05:40:25.962
16 4.0.6.3194 2025.03.27 ab754 P P 628 432 2025.03.28 06:55:42.674 2025.03.28 06:55:43.302 2025.03.28 05:52:36.726 2025.03.28 05:52:37.158
17 4.0.6.3194 2025.03.26 912aa P P 623 462 2025.03.27 06:46:02.806 2025.03.27 06:46:03.429 2025.03.27 05:41:40.943 2025.03.27 05:41:41.405
18 4.0.6.3193 2025.03.20 80234 P P 679 461 2025.03.24 06:46:32.594 2025.03.24 06:46:33.273 2025.03.24 05:41:51.560 2025.03.24 05:41:52.021
19 4.0.6.3192 2025.03.13 2a9da P P 626 404 2025.03.20 06:33:44.620 2025.03.20 06:33:45.246 2025.03.20 05:31:08.483 2025.03.20 05:31:08.887
20 4.0.6.3191 2025.03.10 3d9fd P P 628 429 2025.03.13 06:41:22.006 2025.03.13 06:41:22.634 2025.03.13 05:37:12.709 2025.03.13 05:37:13.138
21 4.0.6.3190 2025.02.25 c9928 P P 664 404 2025.03.09 06:38:08.352 2025.03.09 06:38:09.016 2025.03.09 05:34:09.477 2025.03.09 05:34:09.881
22 4.0.6.3189 2025.02.22 3fb0b P P 608 857 2025.02.25 06:27:01.341 2025.02.25 06:27:01.949 2025.02.25 05:24:42.139 2025.02.25 05:24:42.996
23 4.0.6.3188 2025.02.21 8ee1c P P 621 403 2025.02.22 06:20:38.151 2025.02.22 06:20:38.772 2025.02.22 05:18:42.781 2025.02.22 05:18:43.184
24 4.0.6.3186 2025.02.19 92cb6 P P 608 425 2025.02.20 04:18:25.729 2025.02.20 04:18:26.337 2025.02.20 03:15:51.697 2025.02.20 03:15:52.122
25 4.0.6.3185 2025.02.16 9cac4 P P 633 418 2025.02.17 02:05:42.449 2025.02.17 02:05:43.082 2025.02.17 01:03:57.312 2025.02.17 01:03:57.730
26 4.0.6.3183 2025.02.04 bf738 P P 634 896 2025.02.08 06:24:25.275 2025.02.08 06:24:25.909 2025.02.08 05:22:14.124 2025.02.08 05:22:15.020
27 4.0.6.3181 2025.02.01 00b64 P P 610 409 2025.02.04 06:37:55.495 2025.02.04 06:37:56.105 2025.02.04 05:35:36.012 2025.02.04 05:35:36.421
28 4.0.6.3180 2025.01.27 2edb8 P P 638 410 2025.01.28 06:21:00.035 2025.01.28 06:21:00.673 2025.01.28 05:19:25.530 2025.01.28 05:19:25.940
29 4.0.6.3179 2025.01.24 008d4 P P 630 410 2025.01.25 04:11:14.059 2025.01.25 04:11:14.689 2025.01.25 03:09:40.062 2025.01.25 03:09:40.472
30 4.0.6.3178 2025.01.20 ec94d P P 602 408 2025.01.24 06:21:43.074 2025.01.24 06:21:43.676 2025.01.24 05:19:59.646 2025.01.24 05:20:00.054
31 4.0.6.3176 2025.01.16 79cc1 P P 603 406 2025.01.20 06:20:29.564 2025.01.20 06:20:30.167 2025.01.20 05:18:48.951 2025.01.20 05:18:49.357
32 4.0.6.3175 2025.01.15 91361 P P 616 405 2025.01.16 06:24:16.546 2025.01.16 06:24:17.162 2025.01.16 05:22:13.723 2025.01.16 05:22:14.128
33 4.0.6.3174 2024.12.23 ffd39 P P 614 405 2025.01.15 06:17:46.154 2025.01.15 06:17:46.768 2025.01.15 05:15:42.543 2025.01.15 05:15:42.948
34 4.0.6.3173 2024.12.19 60b32 P P 618 409 2024.12.21 17:17:35.644 2024.12.21 17:17:36.262 2024.12.21 16:15:26.846 2024.12.21 16:15:27.255
35 4.0.6.3172 2024.12.11 33f5d P P 612 404 2024.12.16 06:19:48.691 2024.12.16 06:19:49.303 2024.12.16 05:18:03.045 2024.12.16 05:18:03.449
36 4.0.6.3171 2024.12.10 ab1d4 P P 637 404 2024.12.11 06:22:13.104 2024.12.11 06:22:13.741 2024.12.11 05:20:18.671 2024.12.11 05:20:19.075
37 4.0.6.3170 2024.12.02 68abd P P 616 444 2024.12.04 06:11:03.145 2024.12.04 06:11:03.761 2024.12.04 05:10:24.282 2024.12.04 05:10:24.726
38 4.0.6.3169 2024.11.28 1673f P P 606 424 2024.11.30 06:09:03.100 2024.11.30 06:09:03.706 2024.11.30 05:08:29.844 2024.11.30 05:08:30.268
39 4.0.6.3168 2024.11.27 7fffc P P 601 408 2024.11.28 06:04:58.795 2024.11.28 06:04:59.396 2024.11.28 05:05:07.893 2024.11.28 05:05:08.301
40 4.0.6.3168 2024.11.07 f67e2 P P 602 415 2024.11.27 06:07:28.300 2024.11.27 06:07:28.902 2024.11.27 05:06:49.110 2024.11.27 05:06:49.525
41 4.0.6.3167 2024.11.04 c9228 P P 607 437 2024.11.05 06:00:20.261 2024.11.05 06:00:20.868 2024.11.05 05:00:45.850 2024.11.05 05:00:46.287
42 4.0.6.3165 2024.10.23 b0c36 P P 604 399 2024.11.04 11:50:09.140 2024.11.04 11:50:09.744 2024.11.04 10:50:25.135 2024.11.04 10:50:25.534
43 4.0.6.3164 2024.10.17 35344 P P 623 424 2024.10.23 06:09:34.324 2024.10.23 06:09:34.947 2024.10.23 05:09:13.112 2024.10.23 05:09:13.536
44 4.0.6.3161 2024.10.05 91502 P P 616 414 2024.10.15 06:06:44.385 2024.10.15 06:06:45.001 2024.10.15 05:06:49.627 2024.10.15 05:06:50.041
45 4.0.6.3159 2024.10.01 85136 P P 607 405 2024.10.05 06:10:40.331 2024.10.05 06:10:40.938 2024.10.05 05:09:42.821 2024.10.05 05:09:43.226
46 4.0.6.3158 2024.09.30 14c68 P P 634 405 2024.10.01 06:08:49.283 2024.10.01 06:08:49.917 2024.10.01 05:07:56.237 2024.10.01 05:07:56.642
47 4.0.6.3157 2024.09.24 3bb2e P P 606 411 2024.09.30 06:08:27.282 2024.09.30 06:08:27.888 2024.09.30 05:07:55.067 2024.09.30 05:07:55.478
48 4.0.6.3156 2024.09.21 f6416 P P 671 410 2024.09.24 06:07:47.791 2024.09.24 06:07:48.462 2024.09.24 05:07:22.528 2024.09.24 05:07:22.938
49 4.0.6.3155 2024.09.20 1ed0c P P 604 427 2024.09.21 06:09:18.631 2024.09.21 06:09:19.235 2024.09.21 05:08:32.105 2024.09.21 05:08:32.532
50 4.0.6.3151 2024.09.09 1b77f P P 666 399 2024.09.17 06:06:35.272 2024.09.17 06:06:35.938 2024.09.17 05:06:54.720 2024.09.17 05:06:55.119
51 4.0.6.3149 2024.09.04 32ce9 P P 637 407 2024.09.08 04:07:32.050 2024.09.08 04:07:32.687 2024.09.08 03:06:52.956 2024.09.08 03:06:53.363
52 4.0.6.3148 2024.09.02 4be5c P P 617 425 2024.09.04 06:10:11.343 2024.09.04 06:10:11.960 2024.09.04 05:09:08.050 2024.09.04 05:09:08.475
53 4.0.6.3147 2024.08.30 5ffd7 P P 642 435 2024.09.02 05:59:35.090 2024.09.02 05:59:35.732 2024.09.02 04:58:48.931 2024.09.02 04:58:49.366
54 4.0.6.3146 2024.08.27 38582 P P 616 407 2024.08.30 05:54:28.566 2024.08.30 05:54:29.182 2024.08.30 04:53:42.544 2024.08.30 04:53:42.951
55 4.0.6.3145 2024.08.21 87240 P P 609 410 2024.08.27 05:49:34.734 2024.08.27 05:49:35.343 2024.08.27 04:48:56.971 2024.08.27 04:48:57.381
56 4.0.6.3144 2024.08.20 5a3b7 P P 610 417 2024.08.21 05:47:29.012 2024.08.21 05:47:29.622 2024.08.21 04:46:30.997 2024.08.21 04:46:31.414
57 4.0.6.3142 2024.08.11 b9f39 P P 745 441 2024.08.19 05:57:40.740 2024.08.19 05:57:41.485 2024.08.19 04:54:51.604 2024.08.19 04:54:52.045
58 4.0.6.3141 2024.08.09 6d39f P P 690 436 2024.08.11 03:51:36.693 2024.08.11 03:51:37.383 2024.08.11 02:48:26.198 2024.08.11 02:48:26.634
59 4.0.5.3140 2024.08.06 64f3a P P 710 457 2024.08.10 21:38:40.013 2024.08.10 21:38:40.723 2024.08.10 20:31:49.292 2024.08.10 20:31:49.749
60 4.0.5.3139 2024.08.01 3bc8b P P 494 326 2024.08.06 03:42:55.102 2024.08.06 03:42:55.596 2024.08.06 02:44:41.154 2024.08.06 02:44:41.480
61 4.0.5.3136 2024.07.31 e41ec P P 488 340 2024.08.01 12:14:35.531 2024.08.01 12:14:36.019 2024.08.01 11:18:30.496 2024.08.01 11:18:30.836
62 4.0.5.3135 2024.07.26 b4981 P P 554 355 2024.07.30 05:23:30.495 2024.07.30 05:23:31.049 2024.07.30 04:27:40.985 2024.07.30 04:27:41.340
63 4.0.5.3129 2024.07.24 b8184 P P 502 328 2024.07.25 05:23:11.346 2024.07.25 05:23:11.848 2024.07.25 04:27:19.723 2024.07.25 04:27:20.051
64 4.0.5.3128 2024.07.13 aa318 P P 494 333 2024.07.24 05:50:11.119 2024.07.24 05:50:11.613 2024.07.24 04:54:08.311 2024.07.24 04:54:08.644
65 4.0.5.3127 2024.07.10 eace3 P P 485 312 2024.07.13 05:19:39.491 2024.07.13 05:19:39.976 2024.07.13 04:24:35.899 2024.07.13 04:24:36.211
66 4.0.5.3123 2024.07.09 070ee P P 494 336 2024.07.10 05:34:23.935 2024.07.10 05:34:24.429 2024.07.10 04:36:59.970 2024.07.10 04:37:00.306
67 4.0.5.3123 2024.06.24 c27c6 P P 550 325 2024.07.09 05:33:42.580 2024.07.09 05:33:43.130 2024.07.09 04:35:39.258 2024.07.09 04:35:39.583
68 4.0.5.3112 2024.06.13 d2e61 P P 486 314 2024.06.21 22:08:30.585 2024.06.21 22:08:31.071 2024.06.21 21:09:59.339 2024.06.21 21:09:59.653
69 4.0.5.3109 2024.06.12 de9c0 P P 469 250 2024.06.13 03:00:32.693 2024.06.13 03:00:33.162 2024.06.13 02:08:38.960 2024.06.13 02:08:39.210
70 4.0.5.3109 2024.06.09 569cf P P 469 250 2024.06.11 03:00:51.161 2024.06.11 03:00:51.630 2024.06.11 02:08:50.931 2024.06.11 02:08:51.181
71 4.0.5.3103 2024.05.24 61480 P P 453 250 2024.05.25 02:57:46.061 2024.05.25 02:57:46.514 2024.05.25 02:06:15.263 2024.05.25 02:06:15.513
72 4.0.5.3100 2024.05.15 2dc0d P P 484 250 2024.05.24 03:00:10.361 2024.05.24 03:00:10.845 2024.05.24 02:07:46.573 2024.05.24 02:07:46.823
73 4.0.5.3098 2024.05.09 4c3ec P P 453 250 2024.05.15 02:56:11.705 2024.05.15 02:56:12.158 2024.05.15 02:04:52.393 2024.05.15 02:04:52.643
74 4.0.5.3097 2024.05.08 ec699 P P 469 235 2024.05.09 14:44:03.910 2024.05.09 14:44:04.379 2024.05.09 13:52:41.772 2024.05.09 13:52:42.007
75 4.0.5.3092 2024.05.06 bbc47 P P 469 250 2024.05.08 02:56:44.138 2024.05.08 02:56:44.607 2024.05.08 02:05:28.370 2024.05.08 02:05:28.620
76 4.0.5.3091 2024.04.29 062a7 P P 453 250 2024.04.30 02:54:30.795 2024.04.30 02:54:31.248 2024.04.30 02:03:33.966 2024.04.30 02:03:34.216
77 4.0.5.3089 2024.04.19 08c92 P P 468 250 2024.04.29 02:54:52.726 2024.04.29 02:54:53.194 2024.04.29 02:03:43.844 2024.04.29 02:03:44.094
78 4.0.5.3088 2024.04.17 c4484 P P 469 234 2024.04.19 02:54:54.127 2024.04.19 02:54:54.596 2024.04.19 02:03:27.821 2024.04.19 02:03:28.055
79 4.0.5.3086 2024.04.16 434ab P P 469 250 2024.04.17 02:51:52.112 2024.04.17 02:51:52.581 2024.04.17 02:01:02.313 2024.04.17 02:01:02.563
80 4.0.5.3083 2024.03.31 6ee48 P P 469 250 2024.04.13 02:47:16.759 2024.04.13 02:47:17.228 2024.04.13 01:56:38.247 2024.04.13 01:56:38.497
81 4.0.5.3082 2024.03.31 c768b P P 390 234 2024.04.04 14:23:48.341 2024.04.04 14:23:48.731 2024.04.04 13:36:36.591 2024.04.04 13:36:36.825
82 4.0.5.3082 2024.03.25 af9dc P P 421 233 2024.03.29 02:04:19.639 2024.03.29 02:04:20.060 2024.03.29 01:14:55.385 2024.03.29 01:14:55.618
83 4.0.5.3081 2024.03.22 17cd2 P P 406 234 2024.03.24 03:38:51.176 2024.03.24 03:38:51.582 2024.03.24 02:48:23.694 2024.03.24 02:48:23.928
84 4.0.5.3080 2024.03.22 5d44e P P 389 234 2024.03.22 16:23:28.988 2024.03.22 16:23:29.377 2024.03.22 15:35:58.651 2024.03.22 15:35:58.885
85 4.0.5.3080 2024.03.17 17edd P P 406 233 2024.03.20 19:50:38.450 2024.03.20 19:50:38.856 2024.03.20 19:03:11.672 2024.03.20 19:03:11.905

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):