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_12149')
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_12149\\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_12149\\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 980 2483 2025.06.26 08:10:13.782 2025.06.26 08:10:14.762 2025.06.26 07:01:08.802 2025.06.26 07:01:11.285
2 4.0.6.3214 2025.06.21 e11f6 P P 1016 603 2025.06.25 12:49:19.592 2025.06.25 12:49:20.608 2025.06.25 11:47:22.056 2025.06.25 11:47:22.659
3 4.0.6.3213 2025.06.14 f015c P P 997 580 2025.06.21 07:49:55.784 2025.06.21 07:49:56.781 2025.06.21 06:47:42.523 2025.06.21 06:47:43.103
4 4.0.6.3212 2025.06.11 bc50d P P 1002 592 2025.06.14 08:17:36.137 2025.06.14 08:17:37.139 2025.06.14 07:14:47.933 2025.06.14 07:14:48.525
5 4.0.6.3208 2025.06.10 19fe3 P P 978 607 2025.06.11 06:44:31.223 2025.06.11 06:44:32.201 2025.06.11 05:42:43.428 2025.06.11 05:42:44.035
6 4.0.6.3207 2025.06.07 205ff P P 991 612 2025.06.10 06:45:56.613 2025.06.10 06:45:57.604 2025.06.10 05:43:20.718 2025.06.10 05:43:21.330
7 4.0.6.3206 2025.05.22 d7d10 P P 1015 566 2025.06.06 06:39:32.502 2025.06.06 06:39:33.517 2025.06.06 05:38:25.250 2025.06.06 05:38:25.816
8 4.0.6.3205 2025.05.07 00148 P P 1000 547 2025.05.18 06:27:01.818 2025.05.18 06:27:02.818 2025.05.18 05:27:44.353 2025.05.18 05:27:44.900
9 4.0.6.3204 2025.05.06 35b85 P P 945 561 2025.05.07 06:35:16.610 2025.05.07 06:35:17.555 2025.05.07 05:34:35.930 2025.05.07 05:34:36.491
10 4.0.6.3203 2025.05.05 c2cbd P P 973 551 2025.05.06 06:35:33.904 2025.05.06 06:35:34.877 2025.05.06 05:34:43.557 2025.05.06 05:34:44.108
11 4.0.6.3200 2025.04.18 7ef56 P P 1005 557 2025.04.26 06:40:07.886 2025.04.26 06:40:08.891 2025.04.26 05:38:59.557 2025.04.26 05:39:00.114
12 4.0.6.3199 2025.04.14 33a10 P P 951 549 2025.04.17 06:37:43.876 2025.04.17 06:37:44.827 2025.04.17 05:36:26.467 2025.04.17 05:36:27.016
13 4.0.6.3198 2025.04.13 64a7f P P 977 576 2025.04.14 06:35:57.605 2025.04.14 06:35:58.582 2025.04.14 05:34:46.358 2025.04.14 05:34:46.934
14 4.0.6.3195 2025.04.12 82cb5 P P 906 548 2025.04.13 06:20:47.763 2025.04.13 06:20:48.669 2025.04.13 05:22:02.610 2025.04.13 05:22:03.158
15 4.0.6.3195 2025.03.28 b9faf P P 925 544 2025.04.12 06:40:57.378 2025.04.12 06:40:58.303 2025.04.12 05:38:50.886 2025.04.12 05:38:51.430
16 4.0.6.3194 2025.03.27 ab754 P P 933 576 2025.03.28 06:53:31.192 2025.03.28 06:53:32.125 2025.03.28 05:50:58.776 2025.03.28 05:50:59.352
17 4.0.6.3194 2025.03.26 912aa P P 970 576 2025.03.27 06:43:51.107 2025.03.27 06:43:52.077 2025.03.27 05:40:01.511 2025.03.27 05:40:02.087
18 4.0.6.3193 2025.03.20 80234 P P 1036 608 2025.03.24 06:44:17.665 2025.03.24 06:44:18.701 2025.03.24 05:40:11.815 2025.03.24 05:40:12.423
19 4.0.6.3192 2025.03.13 2a9da P P 1008 560 2025.03.20 06:31:35.798 2025.03.20 06:31:36.806 2025.03.20 05:29:33.799 2025.03.20 05:29:34.359
20 4.0.6.3191 2025.03.10 3d9fd P P 952 568 2025.03.13 06:39:09.958 2025.03.13 06:39:10.910 2025.03.13 05:35:34.288 2025.03.13 05:35:34.856
21 4.0.6.3190 2025.02.25 c9928 P P 934 594 2025.03.09 06:35:57.455 2025.03.09 06:35:58.389 2025.03.09 05:32:32.643 2025.03.09 05:32:33.237
22 4.0.6.3189 2025.02.22 3fb0b P P 935 573 2025.02.25 06:24:52.524 2025.02.25 06:24:53.459 2025.02.25 05:23:06.626 2025.02.25 05:23:07.199
23 4.0.6.3188 2025.02.21 8ee1c P P 954 542 2025.02.22 06:18:30.066 2025.02.22 06:18:31.020 2025.02.22 05:17:07.971 2025.02.22 05:17:08.513
24 4.0.6.3186 2025.02.19 92cb6 P P 936 570 2025.02.20 04:16:16.258 2025.02.20 04:16:17.194 2025.02.20 03:14:16.500 2025.02.20 03:14:17.070
25 4.0.6.3185 2025.02.16 9cac4 P P 926 557 2025.02.17 02:03:34.393 2025.02.17 02:03:35.319 2025.02.17 01:02:22.761 2025.02.17 01:02:23.318
26 4.0.6.3183 2025.02.04 bf738 P P 932 563 2025.02.08 06:22:16.075 2025.02.08 06:22:17.007 2025.02.08 05:20:38.743 2025.02.08 05:20:39.306
27 4.0.6.3181 2025.02.01 00b64 P P 956 559 2025.02.04 06:35:46.832 2025.02.04 06:35:47.788 2025.02.04 05:34:01.123 2025.02.04 05:34:01.682
28 4.0.6.3180 2025.01.27 2edb8 P P 924 565 2025.01.28 06:18:51.326 2025.01.28 06:18:52.250 2025.01.28 05:17:50.579 2025.01.28 05:17:51.144
29 4.0.6.3179 2025.01.24 008d4 P P 922 550 2025.01.25 04:09:05.577 2025.01.25 04:09:06.499 2025.01.25 03:08:05.387 2025.01.25 03:08:05.937
30 4.0.6.3178 2025.01.20 ec94d P P 923 559 2025.01.24 06:19:34.682 2025.01.24 06:19:35.605 2025.01.24 05:18:24.998 2025.01.24 05:18:25.557
31 4.0.6.3176 2025.01.16 79cc1 P P 931 561 2025.01.20 06:18:20.301 2025.01.20 06:18:21.232 2025.01.20 05:17:14.043 2025.01.20 05:17:14.604
32 4.0.6.3175 2025.01.15 91361 P P 964 563 2025.01.16 06:22:07.565 2025.01.16 06:22:08.529 2025.01.16 05:20:39.083 2025.01.16 05:20:39.646
33 4.0.6.3174 2024.12.23 ffd39 P P 940 561 2025.01.15 06:15:36.886 2025.01.15 06:15:37.826 2025.01.15 05:14:07.619 2025.01.15 05:14:08.180
34 4.0.6.3173 2024.12.19 60b32 P P 940 583 2024.12.21 17:15:25.402 2024.12.21 17:15:26.342 2024.12.21 16:13:48.255 2024.12.21 16:13:48.838
35 4.0.6.3172 2024.12.11 33f5d P P 932 563 2024.12.16 06:17:39.403 2024.12.16 06:17:40.335 2024.12.16 05:16:28.286 2024.12.16 05:16:28.849
36 4.0.6.3171 2024.12.10 ab1d4 P P 961 549 2024.12.11 06:20:03.286 2024.12.11 06:20:04.247 2024.12.11 05:18:43.927 2024.12.11 05:18:44.476
37 4.0.6.3170 2024.12.02 68abd P P 938 566 2024.12.04 06:08:53.769 2024.12.04 06:08:54.707 2024.12.04 05:08:49.078 2024.12.04 05:08:49.644
38 4.0.6.3169 2024.11.28 1673f P P 971 560 2024.11.30 06:06:52.889 2024.11.30 06:06:53.860 2024.11.30 05:06:54.677 2024.11.30 05:06:55.237
39 4.0.6.3168 2024.11.27 7fffc P P 1001 567 2024.11.28 06:02:49.585 2024.11.28 06:02:50.586 2024.11.28 05:03:32.699 2024.11.28 05:03:33.266
40 4.0.6.3168 2024.11.07 f67e2 P P 935 563 2024.11.27 06:05:19.225 2024.11.27 06:05:20.160 2024.11.27 05:05:13.905 2024.11.27 05:05:14.468
41 4.0.6.3167 2024.11.04 c9228 P P 941 559 2024.11.05 05:58:11.411 2024.11.05 05:58:12.352 2024.11.05 04:59:10.707 2024.11.05 04:59:11.266
42 4.0.6.3165 2024.10.23 b0c36 P P 934 556 2024.11.04 11:47:59.308 2024.11.04 11:48:00.242 2024.11.04 10:48:50.107 2024.11.04 10:48:50.663
43 4.0.6.3164 2024.10.17 35344 P P 951 554 2024.10.23 06:07:23.918 2024.10.23 06:07:24.869 2024.10.23 05:07:36.614 2024.10.23 05:07:37.168
44 4.0.6.3161 2024.10.05 91502 P P 957 553 2024.10.15 06:04:34.735 2024.10.15 06:04:35.692 2024.10.15 05:05:14.891 2024.10.15 05:05:15.444
45 4.0.6.3159 2024.10.01 85136 P P 928 580 2024.10.05 06:08:30.912 2024.10.05 06:08:31.840 2024.10.05 05:08:04.046 2024.10.05 05:08:04.626
46 4.0.6.3158 2024.09.30 14c68 P P 967 566 2024.10.01 06:06:39.978 2024.10.01 06:06:40.945 2024.10.01 05:06:21.131 2024.10.01 05:06:21.697
47 4.0.6.3157 2024.09.24 3bb2e P P 951 561 2024.09.30 06:06:12.625 2024.09.30 06:06:13.576 2024.09.30 05:06:18.633 2024.09.30 05:06:19.194
48 4.0.6.3156 2024.09.21 f6416 P P 986 573 2024.09.24 06:05:38.527 2024.09.24 06:05:39.513 2024.09.24 05:05:47.429 2024.09.24 05:05:48.002
49 4.0.6.3155 2024.09.20 1ed0c P P 958 566 2024.09.21 06:07:09.734 2024.09.21 06:07:10.692 2024.09.21 05:06:56.990 2024.09.21 05:06:57.556
50 4.0.6.3151 2024.09.09 1b77f P P 996 595 2024.09.17 06:04:26.149 2024.09.17 06:04:27.145 2024.09.17 05:05:16.670 2024.09.17 05:05:17.265
51 4.0.6.3149 2024.09.04 32ce9 P P 933 564 2024.09.08 04:05:22.303 2024.09.08 04:05:23.236 2024.09.08 03:05:17.708 2024.09.08 03:05:18.272
52 4.0.6.3148 2024.09.02 4be5c P P 988 572 2024.09.04 06:08:00.014 2024.09.04 06:08:01.002 2024.09.04 05:07:30.621 2024.09.04 05:07:31.193
53 4.0.6.3147 2024.08.30 5ffd7 P P 936 555 2024.09.02 05:57:24.833 2024.09.02 05:57:25.769 2024.09.02 04:57:12.442 2024.09.02 04:57:12.997
54 4.0.6.3146 2024.08.27 38582 P P 927 571 2024.08.30 05:52:19.271 2024.08.30 05:52:20.198 2024.08.30 04:52:06.089 2024.08.30 04:52:06.660
55 4.0.6.3145 2024.08.21 87240 P P 961 567 2024.08.27 05:47:25.225 2024.08.27 05:47:26.186 2024.08.27 04:47:22.535 2024.08.27 04:47:23.102
56 4.0.6.3144 2024.08.20 5a3b7 P P 959 577 2024.08.21 05:45:17.817 2024.08.21 05:45:18.776 2024.08.21 04:44:56.901 2024.08.21 04:44:57.478
57 4.0.6.3142 2024.08.11 b9f39 P P 1011 597 2024.08.19 05:55:23.756 2024.08.19 05:55:24.767 2024.08.19 04:53:14.255 2024.08.19 04:53:14.852
58 4.0.6.3141 2024.08.09 6d39f P P 1022 608 2024.08.11 03:49:20.335 2024.08.11 03:49:21.357 2024.08.11 02:46:48.387 2024.08.11 02:46:48.995
59 4.0.5.3140 2024.08.06 64f3a P P 1075 590 2024.08.10 21:36:18.279 2024.08.10 21:36:19.354 2024.08.10 20:30:11.709 2024.08.10 20:30:12.299
60 4.0.5.3139 2024.08.01 3bc8b P P 891 498 2024.08.06 03:40:45.012 2024.08.06 03:40:45.903 2024.08.06 02:43:11.007 2024.08.06 02:43:11.505
61 4.0.5.3136 2024.07.31 e41ec P P 873 478 2024.08.01 12:12:28.123 2024.08.01 12:12:28.996 2024.08.01 11:17:01.297 2024.08.01 11:17:01.775
62 4.0.5.3135 2024.07.26 b4981 P P 837 468 2024.07.30 05:21:26.421 2024.07.30 05:21:27.258 2024.07.30 04:26:11.638 2024.07.30 04:26:12.106
63 4.0.5.3129 2024.07.24 b8184 P P 837 478 2024.07.25 05:21:07.319 2024.07.25 05:21:08.156 2024.07.25 04:25:49.778 2024.07.25 04:25:50.256
64 4.0.5.3128 2024.07.13 aa318 P P 836 520 2024.07.24 05:48:07.604 2024.07.24 05:48:08.440 2024.07.24 04:52:38.775 2024.07.24 04:52:39.295
65 4.0.5.3127 2024.07.10 eace3 P P 813 437 2024.07.13 05:17:41.275 2024.07.13 05:17:42.088 2024.07.13 04:23:09.125 2024.07.13 04:23:09.562
66 4.0.5.3123 2024.07.09 070ee P P 881 475 2024.07.10 05:32:19.951 2024.07.10 05:32:20.832 2024.07.10 04:35:31.011 2024.07.10 04:35:31.486
67 4.0.5.3123 2024.06.24 c27c6 P P 881 477 2024.07.09 05:31:38.634 2024.07.09 05:31:39.515 2024.07.09 04:34:09.854 2024.07.09 04:34:10.331
68 4.0.5.3112 2024.06.13 d2e61 P P 828 617 2024.06.21 22:06:25.987 2024.06.21 22:06:26.815 2024.06.21 21:06:08.582 2024.06.21 21:06:09.199
69 4.0.5.3109 2024.06.12 de9c0 P P 1032 375 2024.06.13 02:58:33.570 2024.06.13 02:58:34.602 2024.06.13 02:07:22.811 2024.06.13 02:07:23.186
70 4.0.5.3109 2024.06.09 569cf P P 1063 375 2024.06.11 02:58:51.492 2024.06.11 02:58:52.555 2024.06.11 02:07:34.952 2024.06.11 02:07:35.327
71 4.0.5.3103 2024.05.24 61480 P P 1062 375 2024.05.25 02:55:46.517 2024.05.25 02:55:47.579 2024.05.25 02:04:59.224 2024.05.25 02:04:59.599
72 4.0.5.3100 2024.05.15 2dc0d P P 1047 375 2024.05.24 02:58:11.706 2024.05.24 02:58:12.753 2024.05.24 02:06:30.438 2024.05.24 02:06:30.813
73 4.0.5.3098 2024.05.09 4c3ec P P 1078 375 2024.05.15 02:54:13.161 2024.05.15 02:54:14.239 2024.05.15 02:03:36.289 2024.05.15 02:03:36.664
74 4.0.5.3097 2024.05.08 ec699 P P 1047 375 2024.05.09 14:42:05.602 2024.05.09 14:42:06.649 2024.05.09 13:51:25.654 2024.05.09 13:51:26.029
75 4.0.5.3092 2024.05.06 bbc47 P P 1094 375 2024.05.08 02:54:45.671 2024.05.08 02:54:46.765 2024.05.08 02:04:12.253 2024.05.08 02:04:12.628
76 4.0.5.3091 2024.04.29 062a7 P P 1047 375 2024.04.30 02:52:32.751 2024.04.30 02:52:33.798 2024.04.30 02:02:18.067 2024.04.30 02:02:18.442
77 4.0.5.3089 2024.04.19 08c92 P P 1047 375 2024.04.29 02:52:53.571 2024.04.29 02:52:54.618 2024.04.29 02:02:26.413 2024.04.29 02:02:26.788
78 4.0.5.3088 2024.04.17 c4484 P P 1063 375 2024.04.19 02:52:57.130 2024.04.19 02:52:58.193 2024.04.19 02:02:13.204 2024.04.19 02:02:13.579
79 4.0.5.3086 2024.04.16 434ab P P 1047 375 2024.04.17 02:49:55.411 2024.04.17 02:49:56.458 2024.04.17 01:59:47.724 2024.04.17 01:59:48.099
80 4.0.5.3083 2024.03.31 6ee48 P P 1047 375 2024.04.13 02:45:21.028 2024.04.13 02:45:22.075 2024.04.13 01:55:23.488 2024.04.13 01:55:23.863
81 4.0.5.3082 2024.03.31 c768b P P 781 359 2024.04.04 14:22:02.611 2024.04.04 14:22:03.392 2024.04.04 13:35:24.255 2024.04.04 13:35:24.614
82 4.0.5.3082 2024.03.25 af9dc P P 1077 358 2024.03.29 02:02:26.377 2024.03.29 02:02:27.454 2024.03.29 01:13:42.908 2024.03.29 01:13:43.266
83 4.0.5.3081 2024.03.22 17cd2 P P 1062 358 2024.03.24 03:36:58.008 2024.03.24 03:36:59.070 2024.03.24 02:47:11.187 2024.03.24 02:47:11.545
84 4.0.5.3080 2024.03.22 5d44e P P 765 358 2024.03.22 16:21:44.633 2024.03.22 16:21:45.398 2024.03.22 15:34:46.206 2024.03.22 15:34:46.564
85 4.0.5.3080 2024.03.17 17edd P P 796 358 2024.03.20 19:48:53.924 2024.03.20 19:48:54.720 2024.03.20 19:01:59.398 2024.03.20 19:01:59.756

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):