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 'tmp_dba' for <Function test_1>>

    @pytest.fixture
    def user_fixture(request: pytest.FixtureRequest) -> User:
>       with User(request.getfixturevalue(db_fixture_name), name=name, password=password,
                  plugin=plugin, charset=charset, active=active, tags=tags,
                  first_name=first_name, middle_name=middle_name, last_name=last_name,
                  admin=admin, do_not_create=do_not_create) as user:

src\firebird\qa\plugin.py:1243: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.qa.plugin.User pytest object at [hex]>

    def __enter__(self) -> User:
        if self.__create:
>           self.create()

src\firebird\qa\plugin.py:1068: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

database = 'db_main_alias'

    def connect(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,
                auth_plugin_list: str=None, session_time_zone: str=None) -> Connection:
        """Establishes a connection to the 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.
            auth_plugin_list: List of authentication plugins override
            session_time_zone: Session time zone [Firebird 4]
    
        Hooks:
            Event `.ConnectionHook.ATTACH_REQUEST`: Executed after all parameters
            are preprocessed and before `Connection` is created. Hook
            must have signature::
    
                hook_func(dsn: str, dpb: bytes) -> Optional[Connection]
    
            Hook may return `Connection` instance or None.
            First instance returned by any hook will become the return value
            of this function and other hooks are not called.
    
            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
        else:
            database = db_config.database.value
        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,
                              database, db_config.protocol.value)
        dpb = DPB(user=user, password=password, role=role, trusted_auth=db_config.trusted_auth.value,
                  sql_dialect=db_config.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,
                  parallel_workers=db_config.parallel_workers.value)
>       return __make_connection(False, dsn, db_config.utf8filename.value, dpb.get_buffer(),
                                 db_config.sql_dialect.value, charset, crypt_callback)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:2159: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

create = False, dsn = 'localhost/33337:db_main_alias', utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x000\x04UTF8'
sql_dialect = 3, charset = 'UTF8', 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)
                con = Connection(att, dsn, dpb, sql_dialect, charset)
            else:
                con = None
                for hook in get_callbacks(ConnectionHook.ATTACH_REQUEST, Connection):
                    try:
                        con = hook(dsn, dpb)
                    except Exception as e:
                        raise InterfaceError("Error in DATABASE_ATTACH_REQUEST hook.", *e.args) from e
                    if con is not None:
                        break
                if con is None:
>                   att = provider.attach_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:2074: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
filename = 'localhost/33337:db_main_alias'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x000\x04UTF8'
encoding = 'utf-8'

    def attach_database(self, filename: str, dpb: Optional[bytes] = None, encoding: str = 'ascii') -> iAttachment:
        "Replaces `isc_attach_database()`"
        result = self.vtable.attachDatabase(self, self.status, filename.encode(encoding),
                                            0 if dpb is None else len(dpb), dpb)
>       self._check()

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1300: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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 6970 2510 2025.06.26 08:09:34.494 2025.06.26 08:09:41.464 2025.06.26 07:00:51.882 2025.06.26 07:00:54.392
2 4.0.6.3214 2025.06.21 e11f6 P P 6897 14529 2025.06.25 12:48:40.720 2025.06.25 12:48:47.617 2025.06.25 11:46:37.056 2025.06.25 11:46:51.585
3 4.0.6.3213 2025.06.14 f015c P P 5906 15305 2025.06.21 07:49:17.853 2025.06.21 07:49:23.759 2025.06.21 06:46:57.307 2025.06.21 06:47:12.612
4 4.0.6.3212 2025.06.11 bc50d P P 5938 15304 2025.06.14 08:16:59.008 2025.06.14 08:17:04.946 2025.06.14 07:14:02.955 2025.06.14 07:14:18.259
5 4.0.6.3208 2025.06.10 19fe3 P P 5964 14513 2025.06.11 06:43:53.216 2025.06.11 06:43:59.180 2025.06.11 05:41:58.406 2025.06.11 05:42:12.919
6 4.0.6.3207 2025.06.07 205ff P P 7031 15399 2025.06.10 06:45:18.875 2025.06.10 06:45:25.906 2025.06.10 05:42:35.643 2025.06.10 05:42:51.042
7 4.0.6.3206 2025.05.22 d7d10 P P 6027 14334 2025.06.06 06:38:54.878 2025.06.06 06:39:00.905 2025.06.06 05:37:40.465 2025.06.06 05:37:54.799
8 4.0.6.3205 2025.05.07 00148 P P 6925 14273 2025.05.18 06:26:23.904 2025.05.18 06:26:30.829 2025.05.18 05:27:00.246 2025.05.18 05:27:14.519
9 4.0.6.3204 2025.05.06 35b85 P P 5926 15286 2025.05.07 06:34:39.426 2025.05.07 06:34:45.352 2025.05.07 05:33:51.369 2025.05.07 05:34:06.655
10 4.0.6.3203 2025.05.05 c2cbd P P 5887 15289 2025.05.06 06:34:56.800 2025.05.06 06:35:02.687 2025.05.06 05:33:58.779 2025.05.06 05:34:14.068
11 4.0.6.3200 2025.04.18 7ef56 P P 6912 14307 2025.04.26 06:39:28.786 2025.04.26 06:39:35.698 2025.04.26 05:38:14.931 2025.04.26 05:38:29.238
12 4.0.6.3199 2025.04.14 33a10 P P 7017 15267 2025.04.17 06:37:04.413 2025.04.17 06:37:11.430 2025.04.17 05:35:41.375 2025.04.17 05:35:56.642
13 4.0.6.3198 2025.04.13 64a7f P P 5904 15344 2025.04.14 06:35:19.278 2025.04.14 06:35:25.182 2025.04.14 05:34:01.777 2025.04.14 05:34:17.121
14 4.0.6.3195 2025.04.12 82cb5 P P 6872 15257 2025.04.13 06:20:09.739 2025.04.13 06:20:16.611 2025.04.13 05:21:18.570 2025.04.13 05:21:33.827
15 4.0.6.3195 2025.03.28 b9faf P P 6013 15291 2025.04.12 06:40:18.878 2025.04.12 06:40:24.891 2025.04.12 05:38:06.582 2025.04.12 05:38:21.873
16 4.0.6.3194 2025.03.27 ab754 P P 6917 15376 2025.03.28 06:52:53.485 2025.03.28 06:53:00.402 2025.03.28 05:50:13.448 2025.03.28 05:50:28.824
17 4.0.6.3194 2025.03.26 912aa P P 7010 15623 2025.03.27 06:43:13.093 2025.03.27 06:43:20.103 2025.03.27 05:39:15.030 2025.03.27 05:39:30.653
18 4.0.6.3193 2025.03.20 80234 P P 7115 15394 2025.03.24 06:43:39.416 2025.03.24 06:43:46.531 2025.03.24 05:39:26.056 2025.03.24 05:39:41.450
19 4.0.6.3192 2025.03.13 2a9da P P 6908 15291 2025.03.20 06:30:56.927 2025.03.20 06:31:03.835 2025.03.20 05:28:48.863 2025.03.20 05:29:04.154
20 4.0.6.3191 2025.03.10 3d9fd P P 6376 15342 2025.03.13 06:38:31.673 2025.03.13 06:38:38.049 2025.03.13 05:34:49.082 2025.03.13 05:35:04.424
21 4.0.6.3190 2025.02.25 c9928 P P 5995 15354 2025.03.09 06:35:19.631 2025.03.09 06:35:25.626 2025.03.09 05:31:46.553 2025.03.09 05:32:01.907
22 4.0.6.3189 2025.02.22 3fb0b P P 6885 15286 2025.02.25 06:24:14.662 2025.02.25 06:24:21.547 2025.02.25 05:22:22.003 2025.02.25 05:22:37.289
23 4.0.6.3188 2025.02.21 8ee1c P P 7025 15292 2025.02.22 06:17:51.506 2025.02.22 06:17:58.531 2025.02.22 05:16:22.970 2025.02.22 05:16:38.262
24 4.0.6.3186 2025.02.19 92cb6 P P 6878 14285 2025.02.20 04:15:38.497 2025.02.20 04:15:45.375 2025.02.20 03:13:32.267 2025.02.20 03:13:46.552
25 4.0.6.3185 2025.02.16 9cac4 P P 5891 15293 2025.02.17 02:02:57.508 2025.02.17 02:03:03.399 2025.02.17 01:01:37.551 2025.02.17 01:01:52.844
26 4.0.6.3183 2025.02.04 bf738 P P 6889 14325 2025.02.08 06:21:37.250 2025.02.08 06:21:44.139 2025.02.08 05:19:54.003 2025.02.08 05:20:08.328
27 4.0.6.3181 2025.02.01 00b64 P P 6932 15406 2025.02.04 06:35:08.391 2025.02.04 06:35:15.323 2025.02.04 05:33:16.473 2025.02.04 05:33:31.879
28 4.0.6.3180 2025.01.27 2edb8 P P 6949 15289 2025.01.28 06:18:13.439 2025.01.28 06:18:20.388 2025.01.28 05:17:05.943 2025.01.28 05:17:21.232
29 4.0.6.3179 2025.01.24 008d4 P P 7005 15277 2025.01.25 04:08:27.704 2025.01.25 04:08:34.709 2025.01.25 03:07:20.225 2025.01.25 03:07:35.502
30 4.0.6.3178 2025.01.20 ec94d P P 5912 15329 2025.01.24 06:18:57.700 2025.01.24 06:19:03.612 2025.01.24 05:17:39.937 2025.01.24 05:17:55.266
31 4.0.6.3176 2025.01.16 79cc1 P P 6929 15288 2025.01.20 06:17:40.641 2025.01.20 06:17:47.570 2025.01.20 05:16:28.984 2025.01.20 05:16:44.272
32 4.0.6.3175 2025.01.15 91361 P P 5973 15294 2025.01.16 06:21:29.795 2025.01.16 06:21:35.768 2025.01.16 05:19:54.084 2025.01.16 05:20:09.378
33 4.0.6.3174 2024.12.23 ffd39 P P 5922 15285 2025.01.15 06:14:59.771 2025.01.15 06:15:05.693 2025.01.15 05:13:22.606 2025.01.15 05:13:37.891
34 4.0.6.3173 2024.12.19 60b32 P P 5928 15370 2024.12.21 17:14:48.102 2024.12.21 17:14:54.030 2024.12.21 16:13:02.571 2024.12.21 16:13:17.941
35 4.0.6.3172 2024.12.11 33f5d P P 6912 15286 2024.12.16 06:17:01.478 2024.12.16 06:17:08.390 2024.12.16 05:15:43.641 2024.12.16 05:15:58.927
36 4.0.6.3171 2024.12.10 ab1d4 P P 7024 15342 2024.12.11 06:19:25.042 2024.12.11 06:19:32.066 2024.12.11 05:17:59.044 2024.12.11 05:18:14.386
37 4.0.6.3170 2024.12.02 68abd P P 5919 15296 2024.12.04 06:08:15.421 2024.12.04 06:08:21.340 2024.12.04 05:08:01.948 2024.12.04 05:08:17.244
38 4.0.6.3169 2024.11.28 1673f P P 6950 16290 2024.11.30 06:06:14.859 2024.11.30 06:06:21.809 2024.11.30 05:06:07.422 2024.11.30 05:06:23.712
39 4.0.6.3168 2024.11.27 7fffc P P 5945 16309 2024.11.28 06:02:10.405 2024.11.28 06:02:16.350 2024.11.28 05:02:47.034 2024.11.28 05:03:03.343
40 4.0.6.3168 2024.11.07 f67e2 P P 6973 15290 2024.11.27 06:04:40.729 2024.11.27 06:04:47.702 2024.11.27 05:04:28.449 2024.11.27 05:04:43.739
41 4.0.6.3167 2024.11.04 c9228 P P 5919 15293 2024.11.05 05:57:34.367 2024.11.05 05:57:40.286 2024.11.05 04:58:24.819 2024.11.05 04:58:40.112
42 4.0.6.3165 2024.10.23 b0c36 P P 6937 14302 2024.11.04 11:47:20.091 2024.11.04 11:47:27.028 2024.11.04 10:48:05.559 2024.11.04 10:48:19.861
43 4.0.6.3164 2024.10.17 35344 P P 6971 15363 2024.10.23 06:06:44.677 2024.10.23 06:06:51.648 2024.10.23 05:06:49.680 2024.10.23 05:07:05.043
44 4.0.6.3161 2024.10.05 91502 P P 6922 15288 2024.10.15 06:03:57.015 2024.10.15 06:04:03.937 2024.10.15 05:04:28.626 2024.10.15 05:04:43.914
45 4.0.6.3159 2024.10.01 85136 P P 6043 15378 2024.10.05 06:07:52.570 2024.10.05 06:07:58.613 2024.10.05 05:07:17.244 2024.10.05 05:07:32.622
46 4.0.6.3158 2024.09.30 14c68 P P 6947 15293 2024.10.01 06:06:01.896 2024.10.01 06:06:08.843 2024.10.01 05:05:35.254 2024.10.01 05:05:50.547
47 4.0.6.3157 2024.09.24 3bb2e P P 6062 15329 2024.09.30 06:05:35.122 2024.09.30 06:05:41.184 2024.09.30 05:05:33.715 2024.09.30 05:05:49.044
48 4.0.6.3156 2024.09.21 f6416 P P 6937 15287 2024.09.24 06:05:00.636 2024.09.24 06:05:07.573 2024.09.24 05:05:02.119 2024.09.24 05:05:17.406
49 4.0.6.3155 2024.09.20 1ed0c P P 6900 15288 2024.09.21 06:06:30.706 2024.09.21 06:06:37.606 2024.09.21 05:06:11.874 2024.09.21 05:06:27.162
50 4.0.6.3151 2024.09.09 1b77f P P 5935 15371 2024.09.17 06:03:47.931 2024.09.17 06:03:53.866 2024.09.17 05:04:30.126 2024.09.17 05:04:45.497
51 4.0.6.3149 2024.09.04 32ce9 P P 6975 15345 2024.09.08 04:04:43.097 2024.09.08 04:04:50.072 2024.09.08 03:04:30.825 2024.09.08 03:04:46.170
52 4.0.6.3148 2024.09.02 4be5c P P 5942 15306 2024.09.04 06:07:22.180 2024.09.04 06:07:28.122 2024.09.04 05:06:43.969 2024.09.04 05:06:59.275
53 4.0.6.3147 2024.08.30 5ffd7 P P 6970 15296 2024.09.02 05:56:46.946 2024.09.02 05:56:53.916 2024.09.02 04:56:25.473 2024.09.02 04:56:40.769
54 4.0.6.3146 2024.08.27 38582 P P 5989 15302 2024.08.30 05:51:40.364 2024.08.30 05:51:46.353 2024.08.30 04:51:20.420 2024.08.30 04:51:35.722
55 4.0.6.3145 2024.08.21 87240 P P 5930 15295 2024.08.27 05:46:47.434 2024.08.27 05:46:53.364 2024.08.27 04:46:36.891 2024.08.27 04:46:52.186
56 4.0.6.3144 2024.08.20 5a3b7 P P 7030 15297 2024.08.21 05:44:39.675 2024.08.21 05:44:46.705 2024.08.21 04:44:11.311 2024.08.21 04:44:26.608
57 4.0.6.3142 2024.08.11 b9f39 P P 6073 15280 2024.08.19 05:54:45.787 2024.08.19 05:54:51.860 2024.08.19 04:52:28.359 2024.08.19 04:52:43.639
58 4.0.6.3141 2024.08.09 6d39f P P 6132 15300 2024.08.11 03:48:42.111 2024.08.11 03:48:48.243 2024.08.11 02:46:01.506 2024.08.11 02:46:16.806
59 4.0.5.3140 2024.08.06 64f3a P P 7151 15307 2024.08.10 21:35:38.871 2024.08.10 21:35:46.022 2024.08.10 20:29:25.933 2024.08.10 20:29:41.240
60 4.0.5.3139 2024.08.01 3bc8b P P 6254 15297 2024.08.06 03:40:06.282 2024.08.06 03:40:12.536 2024.08.06 02:42:24.537 2024.08.06 02:42:39.834
61 4.0.5.3136 2024.07.31 e41ec P P 6234 14302 2024.08.01 12:11:50.493 2024.08.01 12:11:56.727 2024.08.01 11:16:14.929 2024.08.01 11:16:29.231
62 4.0.5.3135 2024.07.26 b4981 P P 6046 15272 2024.07.30 05:20:48.171 2024.07.30 05:20:54.217 2024.07.30 04:25:26.069 2024.07.30 04:25:41.341
63 4.0.5.3129 2024.07.24 b8184 P P 7077 15288 2024.07.25 05:20:28.161 2024.07.25 05:20:35.238 2024.07.25 04:25:03.109 2024.07.25 04:25:18.397
64 4.0.5.3128 2024.07.13 aa318 P P 6116 15306 2024.07.24 05:47:30.431 2024.07.24 05:47:36.547 2024.07.24 04:51:54.359 2024.07.24 04:52:09.665
65 4.0.5.3127 2024.07.10 eace3 P P 6868 14225 2024.07.13 05:17:03.104 2024.07.13 05:17:09.972 2024.07.13 04:22:24.290 2024.07.13 04:22:38.515
66 4.0.5.3123 2024.07.09 070ee P P 6076 15282 2024.07.10 05:31:42.530 2024.07.10 05:31:48.606 2024.07.10 04:34:46.484 2024.07.10 04:35:01.766
67 4.0.5.3123 2024.06.24 c27c6 P P 6108 15281 2024.07.09 05:31:01.628 2024.07.09 05:31:07.736 2024.07.09 04:33:25.130 2024.07.09 04:33:40.411
68 4.0.5.3112 2024.06.13 d2e61 P P 6134 15379 2024.06.21 22:05:48.099 2024.06.21 22:05:54.233 2024.06.21 21:05:18.433 2024.06.21 21:05:33.812
69 4.0.5.3109 2024.06.12 de9c0 P P 6204 16237 2024.06.13 02:57:55.535 2024.06.13 02:58:01.739 2024.06.13 02:06:36.337 2024.06.13 02:06:52.574
70 4.0.5.3109 2024.06.09 569cf P P 6250 15237 2024.06.11 02:58:13.254 2024.06.11 02:58:19.504 2024.06.11 02:06:48.913 2024.06.11 02:07:04.150
71 4.0.5.3103 2024.05.24 61480 P P 7188 15220 2024.05.25 02:55:07.028 2024.05.25 02:55:14.216 2024.05.25 02:04:13.641 2024.05.25 02:04:28.861
72 4.0.5.3100 2024.05.15 2dc0d P P 7142 15205 2024.05.24 02:57:31.185 2024.05.24 02:57:38.327 2024.05.24 02:05:44.383 2024.05.24 02:05:59.588
73 4.0.5.3098 2024.05.09 4c3ec P P 6157 15206 2024.05.15 02:53:34.360 2024.05.15 02:53:40.517 2024.05.15 02:02:50.469 2024.05.15 02:03:05.675
74 4.0.5.3097 2024.05.08 ec699 P P 7157 15221 2024.05.09 14:41:26.050 2024.05.09 14:41:33.207 2024.05.09 13:50:39.600 2024.05.09 13:50:54.821
75 4.0.5.3092 2024.05.06 bbc47 P P 7203 16205 2024.05.08 02:54:13.934 2024.05.08 02:54:21.137 2024.05.08 02:03:25.904 2024.05.08 02:03:42.109
76 4.0.5.3091 2024.04.29 062a7 P P 6172 15205 2024.04.30 02:51:54.122 2024.04.30 02:52:00.294 2024.04.30 02:01:32.359 2024.04.30 02:01:47.564
77 4.0.5.3089 2024.04.19 08c92 P P 6188 15205 2024.04.29 02:52:14.832 2024.04.29 02:52:21.020 2024.04.29 02:01:40.861 2024.04.29 02:01:56.066
78 4.0.5.3088 2024.04.17 c4484 P P 7157 15236 2024.04.19 02:52:17.079 2024.04.19 02:52:24.236 2024.04.19 02:01:27.558 2024.04.19 02:01:42.794
79 4.0.5.3086 2024.04.16 434ab P P 6157 15221 2024.04.17 02:49:16.796 2024.04.17 02:49:22.953 2024.04.17 01:59:01.717 2024.04.17 01:59:16.938
80 4.0.5.3083 2024.03.31 6ee48 P P 6235 15220 2024.04.13 02:44:42.226 2024.04.13 02:44:48.461 2024.04.13 01:54:37.077 2024.04.13 01:54:52.297
81 4.0.5.3082 2024.03.31 c768b P P 5782 15064 2024.04.04 14:21:25.810 2024.04.04 14:21:31.592 2024.04.04 13:34:39.031 2024.04.04 13:34:54.095
82 4.0.5.3082 2024.03.25 af9dc P P 7156 15172 2024.03.29 02:01:47.373 2024.03.29 02:01:54.529 2024.03.29 01:12:57.466 2024.03.29 01:13:12.638
83 4.0.5.3081 2024.03.22 17cd2 P P 6218 16157 2024.03.24 03:36:19.317 2024.03.24 03:36:25.535 2024.03.24 02:46:24.963 2024.03.24 02:46:41.120
84 4.0.5.3080 2024.03.22 5d44e P P 5750 15048 2024.03.22 16:21:07.379 2024.03.22 16:21:13.129 2024.03.22 15:34:02.107 2024.03.22 15:34:17.155
85 4.0.5.3080 2024.03.17 17edd P P 5765 15048 2024.03.20 19:48:16.842 2024.03.20 19:48:22.607 2024.03.20 19:01:14.642 2024.03.20 19:01:29.690

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):