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_12224')
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_12224\\test.fdb'
utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x01\x00\x00\x000\x04NONED\x04NONE\x04\x04\x00\x10\x00\x00A\x04\x01\x00\x00\x00D\x04NONE'
sql_dialect = 1, 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_12224\\test.fdb'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x01\x00\x00\x000\x04NONED\x04NONE\x04\x04\x00\x10\x00\x00A\x04\x01\x00\x00\x00D\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 584 2439 2025.06.26 08:12:01.243 2025.06.26 08:12:01.827 2025.06.26 07:06:45.364 2025.06.26 07:06:47.803
2 4.0.6.3214 2025.06.21 e11f6 P P 593 448 2025.06.25 12:51:07.234 2025.06.25 12:51:07.827 2025.06.25 11:48:44.724 2025.06.25 11:48:45.172
3 4.0.6.3213 2025.06.14 f015c P P 613 419 2025.06.21 07:51:43.733 2025.06.21 07:51:44.346 2025.06.21 06:49:03.998 2025.06.21 06:49:04.417
4 4.0.6.3212 2025.06.11 bc50d P P 617 389 2025.06.14 08:19:23.837 2025.06.14 08:19:24.454 2025.06.14 07:16:07.609 2025.06.14 07:16:07.998
5 4.0.6.3208 2025.06.10 19fe3 P P 590 432 2025.06.11 06:46:18.415 2025.06.11 06:46:19.005 2025.06.11 05:44:05.899 2025.06.11 05:44:06.331
6 4.0.6.3207 2025.06.07 205ff P P 597 434 2025.06.10 06:47:44.966 2025.06.10 06:47:45.563 2025.06.10 05:44:44.591 2025.06.10 05:44:45.025
7 4.0.6.3206 2025.05.22 d7d10 P P 630 387 2025.06.06 06:41:20.447 2025.06.06 06:41:21.077 2025.06.06 05:39:43.974 2025.06.06 05:39:44.361
8 4.0.6.3205 2025.05.07 00148 P P 610 391 2025.05.18 06:28:38.726 2025.05.18 06:28:39.336 2025.05.18 05:28:54.505 2025.05.18 05:28:54.896
9 4.0.6.3204 2025.05.06 35b85 P P 614 393 2025.05.07 06:36:51.536 2025.05.07 06:36:52.150 2025.05.07 05:35:47.748 2025.05.07 05:35:48.141
10 4.0.6.3203 2025.05.05 c2cbd P P 592 401 2025.05.06 06:37:09.090 2025.05.06 06:37:09.682 2025.05.06 05:35:55.289 2025.05.06 05:35:55.690
11 4.0.6.3200 2025.04.18 7ef56 P P 595 404 2025.04.26 06:41:43.361 2025.04.26 06:41:43.956 2025.04.26 05:40:11.607 2025.04.26 05:40:12.011
12 4.0.6.3199 2025.04.14 33a10 P P 658 395 2025.04.17 06:39:22.906 2025.04.17 06:39:23.564 2025.04.17 05:37:37.966 2025.04.17 05:37:38.361
13 4.0.6.3198 2025.04.13 64a7f P P 632 412 2025.04.14 06:37:33.471 2025.04.14 06:37:34.103 2025.04.14 05:35:58.428 2025.04.14 05:35:58.840
14 4.0.6.3195 2025.04.12 82cb5 P P 562 391 2025.04.13 06:22:20.910 2025.04.13 06:22:21.472 2025.04.13 05:23:12.570 2025.04.13 05:23:12.961
15 4.0.6.3195 2025.03.28 b9faf P P 598 396 2025.04.12 06:42:32.851 2025.04.12 06:42:33.449 2025.04.12 05:40:02.158 2025.04.12 05:40:02.554
16 4.0.6.3194 2025.03.27 ab754 P P 615 422 2025.03.28 06:55:07.949 2025.03.28 06:55:08.564 2025.03.28 05:52:12.385 2025.03.28 05:52:12.807
17 4.0.6.3194 2025.03.26 912aa P P 606 429 2025.03.27 06:45:28.627 2025.03.27 06:45:29.233 2025.03.27 05:41:15.805 2025.03.27 05:41:16.234
18 4.0.6.3193 2025.03.20 80234 P P 687 426 2025.03.24 06:45:56.855 2025.03.24 06:45:57.542 2025.03.24 05:41:26.521 2025.03.24 05:41:26.947
19 4.0.6.3192 2025.03.13 2a9da P P 617 394 2025.03.20 06:33:10.932 2025.03.20 06:33:11.549 2025.03.20 05:30:44.891 2025.03.20 05:30:45.285
20 4.0.6.3191 2025.03.10 3d9fd P P 606 420 2025.03.13 06:40:47.542 2025.03.13 06:40:48.148 2025.03.13 05:36:48.376 2025.03.13 05:36:48.796
21 4.0.6.3190 2025.02.25 c9928 P P 636 405 2025.03.09 06:37:33.247 2025.03.09 06:37:33.883 2025.03.09 05:33:45.696 2025.03.09 05:33:46.101
22 4.0.6.3189 2025.02.22 3fb0b P P 624 408 2025.02.25 06:26:27.528 2025.02.25 06:26:28.152 2025.02.25 05:24:18.392 2025.02.25 05:24:18.800
23 4.0.6.3188 2025.02.21 8ee1c P P 587 400 2025.02.22 06:20:04.656 2025.02.22 06:20:05.243 2025.02.22 05:18:18.958 2025.02.22 05:18:19.358
24 4.0.6.3186 2025.02.19 92cb6 P P 624 392 2025.02.20 04:17:51.548 2025.02.20 04:17:52.172 2025.02.20 03:15:28.060 2025.02.20 03:15:28.452
25 4.0.6.3185 2025.02.16 9cac4 P P 602 394 2025.02.17 02:05:08.573 2025.02.17 02:05:09.175 2025.02.17 01:03:33.880 2025.02.17 01:03:34.274
26 4.0.6.3183 2025.02.04 bf738 P P 588 393 2025.02.08 06:23:51.426 2025.02.08 06:23:52.014 2025.02.08 05:21:50.429 2025.02.08 05:21:50.822
27 4.0.6.3181 2025.02.01 00b64 P P 592 391 2025.02.04 06:37:21.640 2025.02.04 06:37:22.232 2025.02.04 05:35:12.670 2025.02.04 05:35:13.061
28 4.0.6.3180 2025.01.27 2edb8 P P 605 408 2025.01.28 06:20:26.026 2025.01.28 06:20:26.631 2025.01.28 05:19:02.007 2025.01.28 05:19:02.415
29 4.0.6.3179 2025.01.24 008d4 P P 594 408 2025.01.25 04:10:40.417 2025.01.25 04:10:41.011 2025.01.25 03:09:16.607 2025.01.25 03:09:17.015
30 4.0.6.3178 2025.01.20 ec94d P P 619 399 2025.01.24 06:21:09.156 2025.01.24 06:21:09.775 2025.01.24 05:19:36.329 2025.01.24 05:19:36.728
31 4.0.6.3176 2025.01.16 79cc1 P P 596 438 2025.01.20 06:19:55.718 2025.01.20 06:19:56.314 2025.01.20 05:18:25.492 2025.01.20 05:18:25.930
32 4.0.6.3175 2025.01.15 91361 P P 625 394 2025.01.16 06:23:42.534 2025.01.16 06:23:43.159 2025.01.16 05:21:50.358 2025.01.16 05:21:50.752
33 4.0.6.3174 2024.12.23 ffd39 P P 596 405 2025.01.15 06:17:12.146 2025.01.15 06:17:12.742 2025.01.15 05:15:19.151 2025.01.15 05:15:19.556
34 4.0.6.3173 2024.12.19 60b32 P P 629 424 2024.12.21 17:17:01.521 2024.12.21 17:17:02.150 2024.12.21 16:15:03.197 2024.12.21 16:15:03.621
35 4.0.6.3172 2024.12.11 33f5d P P 592 392 2024.12.16 06:19:14.396 2024.12.16 06:19:14.988 2024.12.16 05:17:39.693 2024.12.16 05:17:40.085
36 4.0.6.3171 2024.12.10 ab1d4 P P 635 394 2024.12.11 06:21:38.805 2024.12.11 06:21:39.440 2024.12.11 05:19:55.273 2024.12.11 05:19:55.667
37 4.0.6.3170 2024.12.02 68abd P P 604 410 2024.12.04 06:10:29.046 2024.12.04 06:10:29.650 2024.12.04 05:10:00.606 2024.12.04 05:10:01.016
38 4.0.6.3169 2024.11.28 1673f P P 619 407 2024.11.30 06:08:28.832 2024.11.30 06:08:29.451 2024.11.30 05:08:06.187 2024.11.30 05:08:06.594
39 4.0.6.3168 2024.11.27 7fffc P P 612 394 2024.11.28 06:04:24.836 2024.11.28 06:04:25.448 2024.11.28 05:04:44.307 2024.11.28 05:04:44.701
40 4.0.6.3168 2024.11.07 f67e2 P P 628 392 2024.11.27 06:06:54.473 2024.11.27 06:06:55.101 2024.11.27 05:06:25.551 2024.11.27 05:06:25.943
41 4.0.6.3167 2024.11.04 c9228 P P 620 387 2024.11.05 05:59:46.634 2024.11.05 05:59:47.254 2024.11.05 05:00:21.941 2024.11.05 05:00:22.328
42 4.0.6.3165 2024.10.23 b0c36 P P 626 390 2024.11.04 11:49:35.435 2024.11.04 11:49:36.061 2024.11.04 10:50:01.443 2024.11.04 10:50:01.833
43 4.0.6.3164 2024.10.17 35344 P P 628 414 2024.10.23 06:08:59.848 2024.10.23 06:09:00.476 2024.10.23 05:08:48.886 2024.10.23 05:08:49.300
44 4.0.6.3161 2024.10.05 91502 P P 621 403 2024.10.15 06:06:10.235 2024.10.15 06:06:10.856 2024.10.15 05:06:26.082 2024.10.15 05:06:26.485
45 4.0.6.3159 2024.10.01 85136 P P 645 432 2024.10.05 06:10:06.349 2024.10.05 06:10:06.994 2024.10.05 05:09:18.521 2024.10.05 05:09:18.953
46 4.0.6.3158 2024.09.30 14c68 P P 610 391 2024.10.01 06:08:15.244 2024.10.01 06:08:15.854 2024.10.01 05:07:32.553 2024.10.01 05:07:32.944
47 4.0.6.3157 2024.09.24 3bb2e P P 623 406 2024.09.30 06:07:52.000 2024.09.30 06:07:52.623 2024.09.30 05:07:30.616 2024.09.30 05:07:31.022
48 4.0.6.3156 2024.09.21 f6416 P P 638 392 2024.09.24 06:07:13.744 2024.09.24 06:07:14.382 2024.09.24 05:06:58.775 2024.09.24 05:06:59.167
49 4.0.6.3155 2024.09.20 1ed0c P P 631 407 2024.09.21 06:08:44.789 2024.09.21 06:08:45.420 2024.09.21 05:08:08.365 2024.09.21 05:08:08.772
50 4.0.6.3151 2024.09.09 1b77f P P 599 396 2024.09.17 06:06:01.184 2024.09.17 06:06:01.783 2024.09.17 05:06:31.098 2024.09.17 05:06:31.494
51 4.0.6.3149 2024.09.04 32ce9 P P 630 393 2024.09.08 04:06:57.917 2024.09.08 04:06:58.547 2024.09.08 03:06:29.156 2024.09.08 03:06:29.549
52 4.0.6.3148 2024.09.02 4be5c P P 620 439 2024.09.04 06:09:36.685 2024.09.04 06:09:37.305 2024.09.04 05:08:43.527 2024.09.04 05:08:43.966
53 4.0.6.3147 2024.08.30 5ffd7 P P 593 391 2024.09.02 05:59:01.016 2024.09.02 05:59:01.609 2024.09.02 04:58:24.068 2024.09.02 04:58:24.459
54 4.0.6.3146 2024.08.27 38582 P P 629 407 2024.08.30 05:53:54.336 2024.08.30 05:53:54.965 2024.08.30 04:53:18.431 2024.08.30 04:53:18.838
55 4.0.6.3145 2024.08.21 87240 P P 611 385 2024.08.27 05:49:00.384 2024.08.27 05:49:00.995 2024.08.27 04:48:33.494 2024.08.27 04:48:33.879
56 4.0.6.3144 2024.08.20 5a3b7 P P 591 385 2024.08.21 05:46:54.189 2024.08.21 05:46:54.780 2024.08.21 04:46:07.623 2024.08.21 04:46:08.008
57 4.0.6.3142 2024.08.11 b9f39 P P 652 440 2024.08.19 05:57:03.923 2024.08.19 05:57:04.575 2024.08.19 04:54:26.905 2024.08.19 04:54:27.345
58 4.0.6.3141 2024.08.09 6d39f P P 671 610 2024.08.11 03:50:59.770 2024.08.11 03:51:00.441 2024.08.11 02:48:01.107 2024.08.11 02:48:01.717
59 4.0.5.3140 2024.08.06 64f3a P P 703 604 2024.08.10 21:38:01.788 2024.08.10 21:38:02.491 2024.08.10 20:31:24.186 2024.08.10 20:31:24.790
60 4.0.5.3139 2024.08.01 3bc8b P P 499 501 2024.08.06 03:42:19.893 2024.08.06 03:42:20.392 2024.08.06 02:44:17.385 2024.08.06 02:44:17.886
61 4.0.5.3136 2024.07.31 e41ec P P 507 318 2024.08.01 12:14:00.746 2024.08.01 12:14:01.253 2024.08.01 11:18:07.089 2024.08.01 11:18:07.407
62 4.0.5.3135 2024.07.26 b4981 P P 588 330 2024.07.30 05:22:55.734 2024.07.30 05:22:56.322 2024.07.30 04:27:17.528 2024.07.30 04:27:17.858
63 4.0.5.3129 2024.07.24 b8184 P P 483 326 2024.07.25 05:22:36.373 2024.07.25 05:22:36.856 2024.07.25 04:26:55.882 2024.07.25 04:26:56.208
64 4.0.5.3128 2024.07.13 aa318 P P 489 318 2024.07.24 05:49:36.407 2024.07.24 05:49:36.896 2024.07.24 04:53:44.960 2024.07.24 04:53:45.278
65 4.0.5.3127 2024.07.10 eace3 P P 453 360 2024.07.13 05:19:07.288 2024.07.13 05:19:07.741 2024.07.13 04:24:13.414 2024.07.13 04:24:13.774
66 4.0.5.3123 2024.07.09 070ee P P 547 330 2024.07.10 05:33:49.366 2024.07.10 05:33:49.913 2024.07.10 04:36:36.492 2024.07.10 04:36:36.822
67 4.0.5.3123 2024.06.24 c27c6 P P 558 327 2024.07.09 05:33:08.036 2024.07.09 05:33:08.594 2024.07.09 04:35:15.719 2024.07.09 04:35:16.046
68 4.0.5.3112 2024.06.13 d2e61 P P 541 1859 2024.06.21 22:07:55.771 2024.06.21 22:07:56.312 2024.06.21 21:09:03.569 2024.06.21 21:09:05.428
69 4.0.5.3109 2024.06.12 de9c0 P P 422 234 2024.06.13 03:00:00.752 2024.06.13 03:00:01.174 2024.06.13 02:08:20.052 2024.06.13 02:08:20.286
70 4.0.5.3109 2024.06.09 569cf P P 422 234 2024.06.11 03:00:19.205 2024.06.11 03:00:19.627 2024.06.11 02:08:32.054 2024.06.11 02:08:32.288
71 4.0.5.3103 2024.05.24 61480 P P 438 234 2024.05.25 02:57:13.464 2024.05.25 02:57:13.902 2024.05.25 02:05:56.324 2024.05.25 02:05:56.558
72 4.0.5.3100 2024.05.15 2dc0d P P 422 234 2024.05.24 02:59:38.701 2024.05.24 02:59:39.123 2024.05.24 02:07:27.634 2024.05.24 02:07:27.868
73 4.0.5.3098 2024.05.09 4c3ec P P 422 234 2024.05.15 02:55:40.092 2024.05.15 02:55:40.514 2024.05.15 02:04:33.391 2024.05.15 02:04:33.625
74 4.0.5.3097 2024.05.08 ec699 P P 457 235 2024.05.09 14:43:32.294 2024.05.09 14:43:32.751 2024.05.09 13:52:22.817 2024.05.09 13:52:23.052
75 4.0.5.3092 2024.05.06 bbc47 P P 422 235 2024.05.08 02:56:12.478 2024.05.08 02:56:12.900 2024.05.08 02:05:09.368 2024.05.08 02:05:09.603
76 4.0.5.3091 2024.04.29 062a7 P P 422 234 2024.04.30 02:53:59.557 2024.04.30 02:53:59.979 2024.04.30 02:03:15.121 2024.04.30 02:03:15.355
77 4.0.5.3089 2024.04.19 08c92 P P 422 250 2024.04.29 02:54:21.253 2024.04.29 02:54:21.675 2024.04.29 02:03:24.983 2024.04.29 02:03:25.233
78 4.0.5.3088 2024.04.17 c4484 P P 422 234 2024.04.19 02:54:22.405 2024.04.19 02:54:22.827 2024.04.19 02:03:08.960 2024.04.19 02:03:09.194
79 4.0.5.3086 2024.04.16 434ab P P 422 234 2024.04.17 02:51:20.609 2024.04.17 02:51:21.031 2024.04.17 02:00:43.499 2024.04.17 02:00:43.733
80 4.0.5.3083 2024.03.31 6ee48 P P 437 234 2024.04.13 02:46:44.912 2024.04.13 02:46:45.349 2024.04.13 01:56:19.339 2024.04.13 01:56:19.573
81 4.0.5.3082 2024.03.31 c768b P P 375 219 2024.04.04 14:23:18.775 2024.04.04 14:23:19.150 2024.04.04 13:36:18.120 2024.04.04 13:36:18.339
82 4.0.5.3082 2024.03.25 af9dc P P 436 218 2024.03.29 02:03:48.636 2024.03.29 02:03:49.072 2024.03.29 01:14:37.101 2024.03.29 01:14:37.319
83 4.0.5.3081 2024.03.22 17cd2 P P 437 217 2024.03.24 03:38:20.204 2024.03.24 03:38:20.641 2024.03.24 02:48:05.396 2024.03.24 02:48:05.613
84 4.0.5.3080 2024.03.22 5d44e P P 390 234 2024.03.22 16:23:00.094 2024.03.22 16:23:00.484 2024.03.22 15:35:40.274 2024.03.22 15:35:40.508
85 4.0.5.3080 2024.03.17 17edd P P 390 218 2024.03.20 19:50:09.541 2024.03.20 19:50:09.931 2024.03.20 19:02:53.404 2024.03.20 19:02:53.622

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):