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_12247')
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_12247\\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_12247\\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 1485 2435 2025.06.26 08:12:26.621 2025.06.26 08:12:28.106 2025.06.26 07:08:14.711 2025.06.26 07:08:17.146
2 4.0.6.3214 2025.06.21 e11f6 P P 1484 974 2025.06.25 12:51:32.387 2025.06.25 12:51:33.871 2025.06.25 11:49:03.177 2025.06.25 11:49:04.151
3 4.0.6.3213 2025.06.14 f015c P P 1491 1059 2025.06.21 07:52:09.243 2025.06.21 07:52:10.734 2025.06.21 06:49:22.526 2025.06.21 06:49:23.585
4 4.0.6.3212 2025.06.11 bc50d P P 1539 922 2025.06.14 08:19:49.430 2025.06.14 08:19:50.969 2025.06.14 07:16:25.044 2025.06.14 07:16:25.966
5 4.0.6.3208 2025.06.10 19fe3 P P 1473 994 2025.06.11 06:46:43.827 2025.06.11 06:46:45.300 2025.06.11 05:44:23.947 2025.06.11 05:44:24.941
6 4.0.6.3207 2025.06.07 205ff P P 1539 930 2025.06.10 06:48:10.567 2025.06.10 06:48:12.106 2025.06.10 05:45:02.793 2025.06.10 05:45:03.723
7 4.0.6.3206 2025.05.22 d7d10 P P 1510 924 2025.06.06 06:41:45.504 2025.06.06 06:41:47.014 2025.06.06 05:40:01.918 2025.06.06 05:40:02.842
8 4.0.6.3205 2025.05.07 00148 P P 1515 906 2025.05.18 06:29:03.633 2025.05.18 06:29:05.148 2025.05.18 05:29:11.193 2025.05.18 05:29:12.099
9 4.0.6.3204 2025.05.06 35b85 P P 1469 915 2025.05.07 06:37:16.528 2025.05.07 06:37:17.997 2025.05.07 05:36:05.017 2025.05.07 05:36:05.932
10 4.0.6.3203 2025.05.05 c2cbd P P 1509 934 2025.05.06 06:37:34.094 2025.05.06 06:37:35.603 2025.05.06 05:36:12.472 2025.05.06 05:36:13.406
11 4.0.6.3200 2025.04.18 7ef56 P P 1475 917 2025.04.26 06:42:08.359 2025.04.26 06:42:09.834 2025.04.26 05:40:28.859 2025.04.26 05:40:29.776
12 4.0.6.3199 2025.04.14 33a10 P P 1524 916 2025.04.17 06:39:48.701 2025.04.17 06:39:50.225 2025.04.17 05:37:55.188 2025.04.17 05:37:56.104
13 4.0.6.3198 2025.04.13 64a7f P P 1473 935 2025.04.14 06:37:59.004 2025.04.14 06:38:00.477 2025.04.14 05:36:15.820 2025.04.14 05:36:16.755
14 4.0.6.3195 2025.04.12 82cb5 P P 1484 891 2025.04.13 06:22:44.816 2025.04.13 06:22:46.300 2025.04.13 05:23:29.195 2025.04.13 05:23:30.086
15 4.0.6.3195 2025.03.28 b9faf P P 1480 919 2025.04.12 06:42:57.966 2025.04.12 06:42:59.446 2025.04.12 05:40:19.528 2025.04.12 05:40:20.447
16 4.0.6.3194 2025.03.27 ab754 P P 1524 986 2025.03.28 06:55:33.638 2025.03.28 06:55:35.162 2025.03.28 05:52:30.450 2025.03.28 05:52:31.436
17 4.0.6.3194 2025.03.26 912aa P P 1507 984 2025.03.27 06:45:54.143 2025.03.27 06:45:55.650 2025.03.27 05:41:34.521 2025.03.27 05:41:35.505
18 4.0.6.3193 2025.03.20 80234 P P 1566 996 2025.03.24 06:46:23.211 2025.03.24 06:46:24.777 2025.03.24 05:41:45.091 2025.03.24 05:41:46.087
19 4.0.6.3192 2025.03.13 2a9da P P 1485 927 2025.03.20 06:33:36.053 2025.03.20 06:33:37.538 2025.03.20 05:31:02.421 2025.03.20 05:31:03.348
20 4.0.6.3191 2025.03.10 3d9fd P P 1531 993 2025.03.13 06:41:13.210 2025.03.13 06:41:14.741 2025.03.13 05:37:06.344 2025.03.13 05:37:07.337
21 4.0.6.3190 2025.02.25 c9928 P P 1560 927 2025.03.09 06:37:59.273 2025.03.09 06:38:00.833 2025.03.09 05:34:03.133 2025.03.09 05:34:04.060
22 4.0.6.3189 2025.02.22 3fb0b P P 1476 927 2025.02.25 06:26:52.734 2025.02.25 06:26:54.210 2025.02.25 05:24:35.967 2025.02.25 05:24:36.894
23 4.0.6.3188 2025.02.21 8ee1c P P 1464 922 2025.02.22 06:20:29.551 2025.02.22 06:20:31.015 2025.02.22 05:18:36.669 2025.02.22 05:18:37.591
24 4.0.6.3186 2025.02.19 92cb6 P P 1555 924 2025.02.20 04:18:16.808 2025.02.20 04:18:18.363 2025.02.20 03:15:45.530 2025.02.20 03:15:46.454
25 4.0.6.3185 2025.02.16 9cac4 P P 1466 915 2025.02.17 02:05:33.900 2025.02.17 02:05:35.366 2025.02.17 01:03:51.256 2025.02.17 01:03:52.171
26 4.0.6.3183 2025.02.04 bf738 P P 1487 929 2025.02.08 06:24:16.744 2025.02.08 06:24:18.231 2025.02.08 05:22:07.945 2025.02.08 05:22:08.874
27 4.0.6.3181 2025.02.01 00b64 P P 1486 937 2025.02.04 06:37:46.895 2025.02.04 06:37:48.381 2025.02.04 05:35:29.943 2025.02.04 05:35:30.880
28 4.0.6.3180 2025.01.27 2edb8 P P 1554 923 2025.01.28 06:20:51.264 2025.01.28 06:20:52.818 2025.01.28 05:19:19.466 2025.01.28 05:19:20.389
29 4.0.6.3179 2025.01.24 008d4 P P 1507 914 2025.01.25 04:11:05.502 2025.01.25 04:11:07.009 2025.01.25 03:09:33.989 2025.01.25 03:09:34.903
30 4.0.6.3178 2025.01.20 ec94d P P 1501 924 2025.01.24 06:21:34.324 2025.01.24 06:21:35.825 2025.01.24 05:19:53.585 2025.01.24 05:19:54.509
31 4.0.6.3176 2025.01.16 79cc1 P P 1523 916 2025.01.20 06:20:20.904 2025.01.20 06:20:22.427 2025.01.20 05:18:42.878 2025.01.20 05:18:43.794
32 4.0.6.3175 2025.01.15 91361 P P 1506 909 2025.01.16 06:24:07.955 2025.01.16 06:24:09.461 2025.01.16 05:22:07.623 2025.01.16 05:22:08.532
33 4.0.6.3174 2024.12.23 ffd39 P P 1485 912 2025.01.15 06:17:37.473 2025.01.15 06:17:38.958 2025.01.15 05:15:36.440 2025.01.15 05:15:37.352
34 4.0.6.3173 2024.12.19 60b32 P P 1530 907 2024.12.21 17:17:26.952 2024.12.21 17:17:28.482 2024.12.21 16:15:20.774 2024.12.21 16:15:21.681
35 4.0.6.3172 2024.12.11 33f5d P P 1474 927 2024.12.16 06:19:39.990 2024.12.16 06:19:41.464 2024.12.16 05:17:56.976 2024.12.16 05:17:57.903
36 4.0.6.3171 2024.12.10 ab1d4 P P 1490 924 2024.12.11 06:22:04.432 2024.12.11 06:22:05.922 2024.12.11 05:20:12.609 2024.12.11 05:20:13.533
37 4.0.6.3170 2024.12.02 68abd P P 1489 913 2024.12.04 06:10:54.469 2024.12.04 06:10:55.958 2024.12.04 05:10:18.164 2024.12.04 05:10:19.077
38 4.0.6.3169 2024.11.28 1673f P P 1506 955 2024.11.30 06:08:54.431 2024.11.30 06:08:55.937 2024.11.30 05:08:23.679 2024.11.30 05:08:24.634
39 4.0.6.3168 2024.11.27 7fffc P P 1475 925 2024.11.28 06:04:50.119 2024.11.28 06:04:51.594 2024.11.28 05:05:01.774 2024.11.28 05:05:02.699
40 4.0.6.3168 2024.11.07 f67e2 P P 1513 914 2024.11.27 06:07:19.599 2024.11.27 06:07:21.112 2024.11.27 05:06:43.014 2024.11.27 05:06:43.928
41 4.0.6.3167 2024.11.04 c9228 P P 1488 908 2024.11.05 06:00:11.732 2024.11.05 06:00:13.220 2024.11.05 05:00:39.794 2024.11.05 05:00:40.702
42 4.0.6.3165 2024.10.23 b0c36 P P 1484 932 2024.11.04 11:50:00.554 2024.11.04 11:50:02.038 2024.11.04 10:50:19.044 2024.11.04 10:50:19.976
43 4.0.6.3164 2024.10.17 35344 P P 1506 943 2024.10.23 06:09:25.588 2024.10.23 06:09:27.094 2024.10.23 05:09:06.905 2024.10.23 05:09:07.848
44 4.0.6.3161 2024.10.05 91502 P P 1541 924 2024.10.15 06:06:35.478 2024.10.15 06:06:37.019 2024.10.15 05:06:43.574 2024.10.15 05:06:44.498
45 4.0.6.3159 2024.10.01 85136 P P 1498 1115 2024.10.05 06:10:31.636 2024.10.05 06:10:33.134 2024.10.05 05:09:36.566 2024.10.05 05:09:37.681
46 4.0.6.3158 2024.09.30 14c68 P P 1549 906 2024.10.01 06:08:40.479 2024.10.01 06:08:42.028 2024.10.01 05:07:50.227 2024.10.01 05:07:51.133
47 4.0.6.3157 2024.09.24 3bb2e P P 1583 913 2024.09.30 06:08:18.341 2024.09.30 06:08:19.924 2024.09.30 05:07:48.992 2024.09.30 05:07:49.905
48 4.0.6.3156 2024.09.21 f6416 P P 1481 926 2024.09.24 06:07:39.141 2024.09.24 06:07:40.622 2024.09.24 05:07:16.486 2024.09.24 05:07:17.412
49 4.0.6.3155 2024.09.20 1ed0c P P 1507 920 2024.09.21 06:09:09.963 2024.09.21 06:09:11.470 2024.09.21 05:08:26.044 2024.09.21 05:08:26.964
50 4.0.6.3151 2024.09.09 1b77f P P 1473 923 2024.09.17 06:06:26.670 2024.09.17 06:06:28.143 2024.09.17 05:06:48.659 2024.09.17 05:06:49.582
51 4.0.6.3149 2024.09.04 32ce9 P P 1480 918 2024.09.08 04:07:23.368 2024.09.08 04:07:24.848 2024.09.08 03:06:46.898 2024.09.08 03:06:47.816
52 4.0.6.3148 2024.09.02 4be5c P P 1612 928 2024.09.04 06:10:02.258 2024.09.04 06:10:03.870 2024.09.04 05:09:01.863 2024.09.04 05:09:02.791
53 4.0.6.3147 2024.08.30 5ffd7 P P 1520 918 2024.09.02 05:59:26.400 2024.09.02 05:59:27.920 2024.09.02 04:58:42.794 2024.09.02 04:58:43.712
54 4.0.6.3146 2024.08.27 38582 P P 1493 919 2024.08.30 05:54:19.829 2024.08.30 05:54:21.322 2024.08.30 04:53:36.285 2024.08.30 04:53:37.204
55 4.0.6.3145 2024.08.21 87240 P P 1482 919 2024.08.27 05:49:26.025 2024.08.27 05:49:27.507 2024.08.27 04:48:50.865 2024.08.27 04:48:51.784
56 4.0.6.3144 2024.08.20 5a3b7 P P 1540 960 2024.08.21 05:47:19.980 2024.08.21 05:47:21.520 2024.08.21 04:46:24.904 2024.08.21 04:46:25.864
57 4.0.6.3142 2024.08.11 b9f39 P P 1596 953 2024.08.19 05:57:31.167 2024.08.19 05:57:32.763 2024.08.19 04:54:45.165 2024.08.19 04:54:46.118
58 4.0.6.3141 2024.08.09 6d39f P P 1628 956 2024.08.11 03:51:26.948 2024.08.11 03:51:28.576 2024.08.11 02:48:19.620 2024.08.11 02:48:20.576
59 4.0.5.3140 2024.08.06 64f3a P P 1611 968 2024.08.10 21:38:30.082 2024.08.10 21:38:31.693 2024.08.10 20:31:42.790 2024.08.10 20:31:43.758
60 4.0.5.3139 2024.08.01 3bc8b P P 1427 839 2024.08.06 03:42:46.712 2024.08.06 03:42:48.139 2024.08.06 02:44:35.575 2024.08.06 02:44:36.414
61 4.0.5.3136 2024.07.31 e41ec P P 1370 863 2024.08.01 12:14:27.390 2024.08.01 12:14:28.760 2024.08.01 11:18:24.912 2024.08.01 11:18:25.775
62 4.0.5.3135 2024.07.26 b4981 P P 1454 830 2024.07.30 05:23:22.392 2024.07.30 05:23:23.846 2024.07.30 04:27:35.490 2024.07.30 04:27:36.320
63 4.0.5.3129 2024.07.24 b8184 P P 1357 844 2024.07.25 05:23:03.289 2024.07.25 05:23:04.646 2024.07.25 04:27:14.108 2024.07.25 04:27:14.952
64 4.0.5.3128 2024.07.13 aa318 P P 1356 825 2024.07.24 05:50:02.937 2024.07.24 05:50:04.293 2024.07.24 04:54:02.751 2024.07.24 04:54:03.576
65 4.0.5.3127 2024.07.10 eace3 P P 1313 812 2024.07.13 05:19:31.991 2024.07.13 05:19:33.304 2024.07.13 04:24:30.555 2024.07.13 04:24:31.367
66 4.0.5.3123 2024.07.09 070ee P P 1418 855 2024.07.10 05:34:15.824 2024.07.10 05:34:17.242 2024.07.10 04:36:54.460 2024.07.10 04:36:55.315
67 4.0.5.3123 2024.06.24 c27c6 P P 1374 823 2024.07.09 05:33:34.577 2024.07.09 05:33:35.951 2024.07.09 04:35:33.710 2024.07.09 04:35:34.533
68 4.0.5.3112 2024.06.13 d2e61 P P 1424 847 2024.06.21 22:08:22.463 2024.06.21 22:08:23.887 2024.06.21 21:09:53.654 2024.06.21 21:09:54.501
69 4.0.5.3109 2024.06.12 de9c0 P P 1563 625 2024.06.13 03:00:25.161 2024.06.13 03:00:26.724 2024.06.13 02:08:34.538 2024.06.13 02:08:35.163
70 4.0.5.3109 2024.06.09 569cf P P 1500 625 2024.06.11 03:00:43.645 2024.06.11 03:00:45.145 2024.06.11 02:08:46.477 2024.06.11 02:08:47.102
71 4.0.5.3103 2024.05.24 61480 P P 1594 625 2024.05.25 02:57:38.576 2024.05.25 02:57:40.170 2024.05.25 02:06:10.810 2024.05.25 02:06:11.435
72 4.0.5.3100 2024.05.15 2dc0d P P 1578 625 2024.05.24 03:00:02.891 2024.05.24 03:00:04.469 2024.05.24 02:07:42.120 2024.05.24 02:07:42.745
73 4.0.5.3098 2024.05.09 4c3ec P P 1516 625 2024.05.15 02:56:04.266 2024.05.15 02:56:05.782 2024.05.15 02:04:47.955 2024.05.15 02:04:48.580
74 4.0.5.3097 2024.05.08 ec699 P P 1547 625 2024.05.09 14:43:56.503 2024.05.09 14:43:58.050 2024.05.09 13:52:37.256 2024.05.09 13:52:37.881
75 4.0.5.3092 2024.05.06 bbc47 P P 1547 625 2024.05.08 02:56:36.653 2024.05.08 02:56:38.200 2024.05.08 02:05:23.839 2024.05.08 02:05:24.464
76 4.0.5.3091 2024.04.29 062a7 P P 1516 625 2024.04.30 02:54:23.419 2024.04.30 02:54:24.935 2024.04.30 02:03:29.544 2024.04.30 02:03:30.169
77 4.0.5.3089 2024.04.19 08c92 P P 1547 626 2024.04.29 02:54:45.225 2024.04.29 02:54:46.772 2024.04.29 02:03:39.390 2024.04.29 02:03:40.016
78 4.0.5.3088 2024.04.17 c4484 P P 1625 625 2024.04.19 02:54:46.486 2024.04.19 02:54:48.111 2024.04.19 02:03:23.414 2024.04.19 02:03:24.039
79 4.0.5.3086 2024.04.16 434ab P P 1562 625 2024.04.17 02:51:44.596 2024.04.17 02:51:46.158 2024.04.17 02:00:57.906 2024.04.17 02:00:58.531
80 4.0.5.3083 2024.03.31 6ee48 P P 1563 625 2024.04.13 02:47:09.352 2024.04.13 02:47:10.915 2024.04.13 01:56:33.809 2024.04.13 01:56:34.434
81 4.0.5.3082 2024.03.31 c768b P P 1219 562 2024.04.04 14:23:41.449 2024.04.04 14:23:42.668 2024.04.04 13:36:32.356 2024.04.04 13:36:32.918
82 4.0.5.3082 2024.03.25 af9dc P P 1546 577 2024.03.29 02:04:12.341 2024.03.29 02:04:13.887 2024.03.29 01:14:51.166 2024.03.29 01:14:51.743
83 4.0.5.3081 2024.03.22 17cd2 P P 1515 593 2024.03.24 03:38:43.894 2024.03.24 03:38:45.409 2024.03.24 02:48:19.428 2024.03.24 02:48:20.021
84 4.0.5.3080 2024.03.22 5d44e P P 1218 593 2024.03.22 16:23:22.378 2024.03.22 16:23:23.596 2024.03.22 15:35:54.416 2024.03.22 15:35:55.009
85 4.0.5.3080 2024.03.17 17edd P P 1203 577 2024.03.20 19:50:31.840 2024.03.20 19:50:33.043 2024.03.20 19:03:07.437 2024.03.20 19:03:08.014

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):