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_12292')
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_12292\\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_12292\\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 8238 2228 2025.06.26 08:15:20.329 2025.06.26 08:15:28.567 2025.06.26 07:10:21.924 2025.06.26 07:10:24.152
2 4.0.6.3214 2025.06.21 e11f6 P P 8249 5924 2025.06.25 12:54:21.607 2025.06.25 12:54:29.856 2025.06.25 11:51:15.401 2025.06.25 11:51:21.325
3 4.0.6.3213 2025.06.14 f015c P P 8240 5894 2025.06.21 07:55:03.941 2025.06.21 07:55:12.181 2025.06.21 06:51:34.211 2025.06.21 06:51:40.105
4 4.0.6.3212 2025.06.11 bc50d P P 8277 5896 2025.06.14 08:22:44.263 2025.06.14 08:22:52.540 2025.06.14 07:18:33.929 2025.06.14 07:18:39.825
5 4.0.6.3208 2025.06.10 19fe3 P P 8271 6284 2025.06.11 06:49:33.421 2025.06.11 06:49:41.692 2025.06.11 05:46:37.496 2025.06.11 05:46:43.780
6 4.0.6.3207 2025.06.07 205ff P P 7330 5878 2025.06.10 06:51:03.924 2025.06.10 06:51:11.254 2025.06.10 05:47:12.125 2025.06.10 05:47:18.003
7 4.0.6.3206 2025.05.22 d7d10 P P 8243 5891 2025.06.06 06:44:35.482 2025.06.06 06:44:43.725 2025.06.06 05:42:10.763 2025.06.06 05:42:16.654
8 4.0.6.3205 2025.05.07 00148 P P 8168 5768 2025.05.18 06:31:55.000 2025.05.18 06:32:03.168 2025.05.18 05:31:16.112 2025.05.18 05:31:21.880
9 4.0.6.3204 2025.05.06 35b85 P P 8270 6898 2025.05.07 06:40:04.784 2025.05.07 06:40:13.054 2025.05.07 05:38:12.870 2025.05.07 05:38:19.768
10 4.0.6.3203 2025.05.05 c2cbd P P 6251 5886 2025.05.06 06:40:09.239 2025.05.06 06:40:15.490 2025.05.06 05:38:20.760 2025.05.06 05:38:26.646
11 4.0.6.3200 2025.04.18 7ef56 P P 6273 5898 2025.04.26 06:44:41.391 2025.04.26 06:44:47.664 2025.04.26 05:42:37.134 2025.04.26 05:42:43.032
12 4.0.6.3199 2025.04.14 33a10 P P 7351 5893 2025.04.17 06:42:24.509 2025.04.17 06:42:31.860 2025.04.17 05:40:04.030 2025.04.17 05:40:09.923
13 4.0.6.3198 2025.04.13 64a7f P P 7779 5881 2025.04.14 06:40:33.779 2025.04.14 06:40:41.558 2025.04.14 05:38:24.307 2025.04.14 05:38:30.188
14 4.0.6.3195 2025.04.12 82cb5 P P 8177 5790 2025.04.13 06:25:27.394 2025.04.13 06:25:35.571 2025.04.13 05:25:34.834 2025.04.13 05:25:40.624
15 4.0.6.3195 2025.03.28 b9faf P P 8307 6158 2025.04.12 06:45:36.992 2025.04.12 06:45:45.299 2025.04.12 05:42:28.361 2025.04.12 05:42:34.519
16 4.0.6.3194 2025.03.27 ab754 P P 8306 5925 2025.03.28 06:58:19.357 2025.03.28 06:58:27.663 2025.03.28 05:54:41.111 2025.03.28 05:54:47.036
17 4.0.6.3194 2025.03.26 912aa P P 7265 5943 2025.03.27 06:48:30.602 2025.03.27 06:48:37.867 2025.03.27 05:43:46.839 2025.03.27 05:43:52.782
18 4.0.6.3193 2025.03.20 80234 P P 7769 5987 2025.03.24 06:49:04.974 2025.03.24 06:49:12.743 2025.03.24 05:43:58.471 2025.03.24 05:44:04.458
19 4.0.6.3192 2025.03.13 2a9da P P 6291 5882 2025.03.20 06:36:05.978 2025.03.20 06:36:12.269 2025.03.20 05:33:11.397 2025.03.20 05:33:17.279
20 4.0.6.3191 2025.03.10 3d9fd P P 8277 5908 2025.03.13 06:43:54.240 2025.03.13 06:44:02.517 2025.03.13 05:39:18.898 2025.03.13 05:39:24.806
21 4.0.6.3190 2025.02.25 c9928 P P 7669 5943 2025.03.09 06:40:43.792 2025.03.09 06:40:51.461 2025.03.09 05:36:12.060 2025.03.09 05:36:18.003
22 4.0.6.3189 2025.02.22 3fb0b P P 6257 6250 2025.02.25 06:29:23.958 2025.02.25 06:29:30.215 2025.02.25 05:26:46.051 2025.02.25 05:26:52.301
23 4.0.6.3188 2025.02.21 8ee1c P P 6257 5895 2025.02.22 06:23:03.816 2025.02.22 06:23:10.073 2025.02.22 05:20:46.249 2025.02.22 05:20:52.144
24 4.0.6.3186 2025.02.19 92cb6 P P 7325 5909 2025.02.20 04:20:57.753 2025.02.20 04:21:05.078 2025.02.20 03:17:54.578 2025.02.20 03:18:00.487
25 4.0.6.3185 2025.02.16 9cac4 P P 7262 5906 2025.02.17 02:08:06.631 2025.02.17 02:08:13.893 2025.02.17 01:06:00.854 2025.02.17 01:06:06.760
26 4.0.6.3183 2025.02.04 bf738 P P 8331 6912 2025.02.08 06:26:53.237 2025.02.08 06:27:01.568 2025.02.08 05:24:17.975 2025.02.08 05:24:24.887
27 4.0.6.3181 2025.02.01 00b64 P P 7266 5900 2025.02.04 06:40:22.023 2025.02.04 06:40:29.289 2025.02.04 05:37:39.205 2025.02.04 05:37:45.105
28 4.0.6.3180 2025.01.27 2edb8 P P 6269 5917 2025.01.28 06:23:23.256 2025.01.28 06:23:29.525 2025.01.28 05:21:28.463 2025.01.28 05:21:34.380
29 4.0.6.3179 2025.01.24 008d4 P P 6237 5886 2025.01.25 04:13:36.148 2025.01.25 04:13:42.385 2025.01.25 03:11:42.761 2025.01.25 03:11:48.647
30 4.0.6.3178 2025.01.20 ec94d P P 6254 5906 2025.01.24 06:24:04.156 2025.01.24 06:24:10.410 2025.01.24 05:22:02.090 2025.01.24 05:22:07.996
31 4.0.6.3176 2025.01.16 79cc1 P P 6486 5892 2025.01.20 06:22:58.227 2025.01.20 06:23:04.713 2025.01.20 05:20:51.416 2025.01.20 05:20:57.308
32 4.0.6.3175 2025.01.15 91361 P P 7271 5897 2025.01.16 06:26:39.232 2025.01.16 06:26:46.503 2025.01.16 05:24:16.309 2025.01.16 05:24:22.206
33 4.0.6.3174 2024.12.23 ffd39 P P 8502 5906 2025.01.15 06:20:12.292 2025.01.15 06:20:20.794 2025.01.15 05:17:44.903 2025.01.15 05:17:50.809
34 4.0.6.3173 2024.12.19 60b32 P P 8323 5919 2024.12.21 17:20:13.313 2024.12.21 17:20:21.636 2024.12.21 16:17:29.331 2024.12.21 16:17:35.250
35 4.0.6.3172 2024.12.11 33f5d P P 7260 5912 2024.12.16 06:22:14.857 2024.12.16 06:22:22.117 2024.12.16 05:20:05.613 2024.12.16 05:20:11.525
36 4.0.6.3171 2024.12.10 ab1d4 P P 7306 5915 2024.12.11 06:24:42.063 2024.12.11 06:24:49.369 2024.12.11 05:22:21.760 2024.12.11 05:22:27.675
37 4.0.6.3170 2024.12.02 68abd P P 8261 5933 2024.12.04 06:13:30.380 2024.12.04 06:13:38.641 2024.12.04 05:12:31.785 2024.12.04 05:12:37.718
38 4.0.6.3169 2024.11.28 1673f P P 7297 5951 2024.11.30 06:11:36.566 2024.11.30 06:11:43.863 2024.11.30 05:10:32.433 2024.11.30 05:10:38.384
39 4.0.6.3168 2024.11.27 7fffc P P 6310 5916 2024.11.28 06:07:25.581 2024.11.28 06:07:31.891 2024.11.28 05:07:11.239 2024.11.28 05:07:17.155
40 4.0.6.3168 2024.11.07 f67e2 P P 8283 6433 2024.11.27 06:09:59.391 2024.11.27 06:10:07.674 2024.11.27 05:09:00.239 2024.11.27 05:09:06.672
41 4.0.6.3167 2024.11.04 c9228 P P 7267 6011 2024.11.05 06:02:47.877 2024.11.05 06:02:55.144 2024.11.05 05:02:48.324 2024.11.05 05:02:54.335
42 4.0.6.3165 2024.10.23 b0c36 P P 8309 6913 2024.11.04 11:52:37.307 2024.11.04 11:52:45.616 2024.11.04 10:52:27.844 2024.11.04 10:52:34.757
43 4.0.6.3164 2024.10.17 35344 P P 7342 6194 2024.10.23 06:12:04.593 2024.10.23 06:12:11.935 2024.10.23 05:11:16.419 2024.10.23 05:11:22.613
44 4.0.6.3161 2024.10.05 91502 P P 8268 5938 2024.10.15 06:09:11.260 2024.10.15 06:09:19.528 2024.10.15 05:08:52.416 2024.10.15 05:08:58.354
45 4.0.6.3159 2024.10.01 85136 P P 7501 5922 2024.10.05 06:13:13.505 2024.10.05 06:13:21.006 2024.10.05 05:11:45.650 2024.10.05 05:11:51.572
46 4.0.6.3158 2024.09.30 14c68 P P 7360 5910 2024.10.01 06:11:16.403 2024.10.01 06:11:23.763 2024.10.01 05:09:59.119 2024.10.01 05:10:05.029
47 4.0.6.3157 2024.09.24 3bb2e P P 6354 6916 2024.09.30 06:11:04.137 2024.09.30 06:11:10.491 2024.09.30 05:09:58.908 2024.09.30 05:10:05.824
48 4.0.6.3156 2024.09.21 f6416 P P 6268 5894 2024.09.24 06:10:20.569 2024.09.24 06:10:26.837 2024.09.24 05:09:27.899 2024.09.24 05:09:33.793
49 4.0.6.3155 2024.09.20 1ed0c P P 7324 5943 2024.09.21 06:11:43.256 2024.09.21 06:11:50.580 2024.09.21 05:10:37.249 2024.09.21 05:10:43.192
50 4.0.6.3151 2024.09.09 1b77f P P 6274 5897 2024.09.17 06:09:04.867 2024.09.17 06:09:11.141 2024.09.17 05:08:57.958 2024.09.17 05:09:03.855
51 4.0.6.3149 2024.09.04 32ce9 P P 7316 5905 2024.09.08 04:09:56.710 2024.09.08 04:10:04.026 2024.09.08 03:08:56.081 2024.09.08 03:09:01.986
52 4.0.6.3148 2024.09.02 4be5c P P 7411 5896 2024.09.04 06:12:44.448 2024.09.04 06:12:51.859 2024.09.04 05:11:11.086 2024.09.04 05:11:16.982
53 4.0.6.3147 2024.08.30 5ffd7 P P 8270 6241 2024.09.02 06:02:01.760 2024.09.02 06:02:10.030 2024.09.02 05:00:53.759 2024.09.02 05:01:00.000
54 4.0.6.3146 2024.08.27 38582 P P 7322 5906 2024.08.30 05:56:58.389 2024.08.30 05:57:05.711 2024.08.30 04:55:45.196 2024.08.30 04:55:51.102
55 4.0.6.3145 2024.08.21 87240 P P 7268 5916 2024.08.27 05:52:02.160 2024.08.27 05:52:09.428 2024.08.27 04:51:02.201 2024.08.27 04:51:08.117
56 4.0.6.3144 2024.08.20 5a3b7 P P 8281 6078 2024.08.21 05:50:09.530 2024.08.21 05:50:17.811 2024.08.21 04:48:34.424 2024.08.21 04:48:40.502
57 4.0.6.3142 2024.08.11 b9f39 P P 8382 5947 2024.08.19 06:00:24.645 2024.08.19 06:00:33.027 2024.08.19 04:56:55.222 2024.08.19 04:57:01.169
58 4.0.6.3141 2024.08.09 6d39f P P 8335 5945 2024.08.11 03:54:19.058 2024.08.11 03:54:27.393 2024.08.11 02:50:32.131 2024.08.11 02:50:38.076
59 4.0.5.3140 2024.08.06 64f3a P P 6999 5983 2024.08.10 21:41:25.718 2024.08.10 21:41:32.717 2024.08.10 20:33:53.365 2024.08.10 20:33:59.348
60 4.0.5.3139 2024.08.01 3bc8b P P 6755 5880 2024.08.06 03:45:21.804 2024.08.06 03:45:28.559 2024.08.06 02:46:45.091 2024.08.06 02:46:50.971
61 4.0.5.3136 2024.07.31 e41ec P P 6716 5827 2024.08.01 12:17:00.240 2024.08.01 12:17:06.956 2024.08.01 11:20:32.615 2024.08.01 11:20:38.442
62 4.0.5.3135 2024.07.26 b4981 P P 6732 5813 2024.07.30 05:25:55.043 2024.07.30 05:26:01.775 2024.07.30 04:29:41.524 2024.07.30 04:29:47.337
63 4.0.5.3129 2024.07.24 b8184 P P 6670 5825 2024.07.25 05:25:35.998 2024.07.25 05:25:42.668 2024.07.25 04:29:20.729 2024.07.25 04:29:26.554
64 4.0.5.3128 2024.07.13 aa318 P P 6687 5818 2024.07.24 05:52:35.407 2024.07.24 05:52:42.094 2024.07.24 04:56:09.751 2024.07.24 04:56:15.569
65 4.0.5.3127 2024.07.10 eace3 P P 6713 5710 2024.07.13 05:21:58.820 2024.07.13 05:22:05.533 2024.07.13 04:26:34.129 2024.07.13 04:26:39.839
66 4.0.5.3123 2024.07.09 070ee P P 6702 5832 2024.07.10 05:36:48.780 2024.07.10 05:36:55.482 2024.07.10 04:39:00.314 2024.07.10 04:39:06.146
67 4.0.5.3123 2024.06.24 c27c6 P P 6770 5832 2024.07.09 05:36:08.811 2024.07.09 05:36:15.581 2024.07.09 04:37:41.399 2024.07.09 04:37:47.231
68 4.0.5.3112 2024.06.13 d2e61 P P 6745 6373 2024.06.21 22:10:56.105 2024.06.21 22:11:02.850 2024.06.21 21:12:17.415 2024.06.21 21:12:23.788
69 4.0.5.3109 2024.06.12 de9c0 P P 6500 5595 2024.06.13 03:02:51.213 2024.06.13 03:02:57.713 2024.06.13 02:10:33.082 2024.06.13 02:10:38.677
70 4.0.5.3109 2024.06.09 569cf P P 6500 5595 2024.06.11 03:03:09.755 2024.06.11 03:03:16.255 2024.06.11 02:10:44.918 2024.06.11 02:10:50.513
71 4.0.5.3103 2024.05.24 61480 P P 6485 5595 2024.05.25 03:00:04.234 2024.05.25 03:00:10.719 2024.05.25 02:08:10.121 2024.05.25 02:08:15.716
72 4.0.5.3100 2024.05.15 2dc0d P P 6517 5594 2024.05.24 03:02:32.502 2024.05.24 03:02:39.019 2024.05.24 02:09:40.556 2024.05.24 02:09:46.150
73 4.0.5.3098 2024.05.09 4c3ec P P 6548 5595 2024.05.15 02:58:31.329 2024.05.15 02:58:37.877 2024.05.15 02:06:46.155 2024.05.15 02:06:51.750
74 4.0.5.3097 2024.05.08 ec699 P P 6485 5610 2024.05.09 14:46:22.068 2024.05.09 14:46:28.553 2024.05.09 13:54:35.550 2024.05.09 13:54:41.160
75 4.0.5.3092 2024.05.06 bbc47 P P 6532 5595 2024.05.08 02:59:02.909 2024.05.08 02:59:09.441 2024.05.08 02:07:22.183 2024.05.08 02:07:27.778
76 4.0.5.3091 2024.04.29 062a7 P P 6486 5594 2024.04.30 02:56:48.673 2024.04.30 02:56:55.159 2024.04.30 02:05:27.575 2024.04.30 02:05:33.169
77 4.0.5.3089 2024.04.19 08c92 P P 6485 5594 2024.04.29 02:57:10.604 2024.04.29 02:57:17.089 2024.04.29 02:05:37.688 2024.04.29 02:05:43.282
78 4.0.5.3088 2024.04.17 c4484 P P 6485 5594 2024.04.19 02:57:13.253 2024.04.19 02:57:19.738 2024.04.19 02:05:21.599 2024.04.19 02:05:27.193
79 4.0.5.3086 2024.04.16 434ab P P 6485 5595 2024.04.17 02:54:09.955 2024.04.17 02:54:16.440 2024.04.17 02:02:56.188 2024.04.17 02:03:01.783
80 4.0.5.3083 2024.03.31 6ee48 P P 6485 5594 2024.04.13 02:49:34.947 2024.04.13 02:49:41.432 2024.04.13 01:58:32.135 2024.04.13 01:58:37.729
81 4.0.5.3082 2024.03.31 c768b P P 6469 5578 2024.04.04 14:26:04.043 2024.04.04 14:26:10.512 2024.04.04 13:38:29.900 2024.04.04 13:38:35.478
82 4.0.5.3082 2024.03.25 af9dc P P 6547 5563 2024.03.29 02:06:37.576 2024.03.29 02:06:44.123 2024.03.29 01:16:48.522 2024.03.29 01:16:54.085
83 4.0.5.3081 2024.03.22 17cd2 P P 6546 5578 2024.03.24 03:41:09.082 2024.03.24 03:41:15.628 2024.03.24 02:50:16.910 2024.03.24 02:50:22.488
84 4.0.5.3080 2024.03.22 5d44e P P 6438 5562 2024.03.22 16:25:44.455 2024.03.22 16:25:50.893 2024.03.22 15:37:51.899 2024.03.22 15:37:57.461
85 4.0.5.3080 2024.03.17 17edd P P 6406 5562 2024.03.20 19:52:53.528 2024.03.20 19:52:59.934 2024.03.20 19:05:04.809 2024.03.20 19:05:10.371

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):