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_12345')
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_12345\\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_12345\\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 819 2439 2025.06.26 08:16:42.464 2025.06.26 08:16:43.283 2025.06.26 07:12:30.903 2025.06.26 07:12:33.342
2 4.0.6.3214 2025.06.21 e11f6 P P 835 578 2025.06.25 12:55:43.745 2025.06.25 12:55:44.580 2025.06.25 11:52:16.653 2025.06.25 11:52:17.231
3 4.0.6.3213 2025.06.14 f015c P P 831 580 2025.06.21 07:56:26.023 2025.06.21 07:56:26.854 2025.06.21 06:52:35.481 2025.06.21 06:52:36.061
4 4.0.6.3212 2025.06.11 bc50d P P 808 548 2025.06.14 08:24:07.035 2025.06.14 08:24:07.843 2025.06.14 07:19:34.141 2025.06.14 07:19:34.689
5 4.0.6.3208 2025.06.10 19fe3 P P 829 551 2025.06.11 06:50:56.758 2025.06.11 06:50:57.587 2025.06.11 05:47:37.349 2025.06.11 05:47:37.900
6 4.0.6.3207 2025.06.07 205ff P P 834 574 2025.06.10 06:52:25.390 2025.06.10 06:52:26.224 2025.06.10 05:48:11.656 2025.06.10 05:48:12.230
7 4.0.6.3206 2025.05.22 d7d10 P P 810 552 2025.06.06 06:45:57.823 2025.06.06 06:45:58.633 2025.06.06 05:43:09.044 2025.06.06 05:43:09.596
8 4.0.6.3205 2025.05.07 00148 P P 797 531 2025.05.18 06:33:15.216 2025.05.18 06:33:16.013 2025.05.18 05:32:13.061 2025.05.18 05:32:13.592
9 4.0.6.3204 2025.05.06 35b85 P P 844 571 2025.05.07 06:41:26.142 2025.05.07 06:41:26.986 2025.05.07 05:39:14.129 2025.05.07 05:39:14.700
10 4.0.6.3203 2025.05.05 c2cbd P P 814 556 2025.05.06 06:41:27.097 2025.05.06 06:41:27.911 2025.05.06 05:39:20.004 2025.05.06 05:39:20.560
11 4.0.6.3200 2025.04.18 7ef56 P P 813 566 2025.04.26 06:46:00.754 2025.04.26 06:46:01.567 2025.04.26 05:43:36.280 2025.04.26 05:43:36.846
12 4.0.6.3199 2025.04.14 33a10 P P 841 569 2025.04.17 06:43:45.451 2025.04.17 06:43:46.292 2025.04.17 05:41:04.219 2025.04.17 05:41:04.788
13 4.0.6.3198 2025.04.13 64a7f P P 832 560 2025.04.14 06:41:54.260 2025.04.14 06:41:55.092 2025.04.14 05:39:23.668 2025.04.14 05:39:24.228
14 4.0.6.3195 2025.04.12 82cb5 P P 782 516 2025.04.13 06:26:44.461 2025.04.13 06:26:45.243 2025.04.13 05:26:31.896 2025.04.13 05:26:32.412
15 4.0.6.3195 2025.03.28 b9faf P P 812 554 2025.04.12 06:46:58.627 2025.04.12 06:46:59.439 2025.04.12 05:43:26.848 2025.04.12 05:43:27.402
16 4.0.6.3194 2025.03.27 ab754 P P 900 589 2025.03.28 06:59:43.790 2025.03.28 06:59:44.690 2025.03.28 05:55:41.887 2025.03.28 05:55:42.476
17 4.0.6.3194 2025.03.26 912aa P P 890 611 2025.03.27 06:50:18.255 2025.03.27 06:50:19.145 2025.03.27 05:44:48.192 2025.03.27 05:44:48.803
18 4.0.6.3193 2025.03.20 80234 P P 880 592 2025.03.24 06:50:28.029 2025.03.24 06:50:28.909 2025.03.24 05:44:59.590 2025.03.24 05:45:00.182
19 4.0.6.3192 2025.03.13 2a9da P P 853 556 2025.03.20 06:37:22.296 2025.03.20 06:37:23.149 2025.03.20 05:34:11.370 2025.03.20 05:34:11.926
20 4.0.6.3191 2025.03.10 3d9fd P P 853 597 2025.03.13 06:45:18.142 2025.03.13 06:45:18.995 2025.03.13 05:40:20.367 2025.03.13 05:40:20.964
21 4.0.6.3190 2025.02.25 c9928 P P 885 588 2025.03.09 06:42:08.128 2025.03.09 06:42:09.013 2025.03.09 05:37:12.771 2025.03.09 05:37:13.359
22 4.0.6.3189 2025.02.22 3fb0b P P 829 567 2025.02.25 06:30:42.608 2025.02.25 06:30:43.437 2025.02.25 05:27:44.906 2025.02.25 05:27:45.473
23 4.0.6.3188 2025.02.21 8ee1c P P 846 562 2025.02.22 06:24:20.994 2025.02.22 06:24:21.840 2025.02.22 05:21:44.676 2025.02.22 05:21:45.238
24 4.0.6.3186 2025.02.19 92cb6 P P 882 563 2025.02.20 04:22:20.278 2025.02.20 04:22:21.160 2025.02.20 03:18:53.073 2025.02.20 03:18:53.636
25 4.0.6.3185 2025.02.16 9cac4 P P 829 548 2025.02.17 02:09:25.123 2025.02.17 02:09:25.952 2025.02.17 01:06:59.046 2025.02.17 01:06:59.594
26 4.0.6.3183 2025.02.04 bf738 P P 834 565 2025.02.08 06:28:12.999 2025.02.08 06:28:13.833 2025.02.08 05:25:18.616 2025.02.08 05:25:19.181
27 4.0.6.3181 2025.02.01 00b64 P P 833 555 2025.02.04 06:41:41.260 2025.02.04 06:41:42.093 2025.02.04 05:38:37.379 2025.02.04 05:38:37.934
28 4.0.6.3180 2025.01.27 2edb8 P P 809 545 2025.01.28 06:24:40.255 2025.01.28 06:24:41.064 2025.01.28 05:22:27.545 2025.01.28 05:22:28.090
29 4.0.6.3179 2025.01.24 008d4 P P 833 554 2025.01.25 04:14:52.485 2025.01.25 04:14:53.318 2025.01.25 03:12:41.313 2025.01.25 03:12:41.867
30 4.0.6.3178 2025.01.20 ec94d P P 814 562 2025.01.24 06:25:21.424 2025.01.24 06:25:22.238 2025.01.24 05:23:00.122 2025.01.24 05:23:00.684
31 4.0.6.3176 2025.01.16 79cc1 P P 817 560 2025.01.20 06:24:16.611 2025.01.20 06:24:17.428 2025.01.20 05:21:51.208 2025.01.20 05:21:51.768
32 4.0.6.3175 2025.01.15 91361 P P 836 565 2025.01.16 06:27:58.605 2025.01.16 06:27:59.441 2025.01.16 05:25:15.508 2025.01.16 05:25:16.073
33 4.0.6.3174 2024.12.23 ffd39 P P 820 570 2025.01.15 06:21:32.429 2025.01.15 06:21:33.249 2025.01.15 05:18:44.116 2025.01.15 05:18:44.686
34 4.0.6.3173 2024.12.19 60b32 P P 873 564 2024.12.21 17:21:38.261 2024.12.21 17:21:39.134 2024.12.21 16:18:28.489 2024.12.21 16:18:29.053
35 4.0.6.3172 2024.12.11 33f5d P P 828 563 2024.12.16 06:23:35.098 2024.12.16 06:23:35.926 2024.12.16 05:21:04.797 2024.12.16 05:21:05.360
36 4.0.6.3171 2024.12.10 ab1d4 P P 828 563 2024.12.11 06:26:02.418 2024.12.11 06:26:03.246 2024.12.11 05:23:21.120 2024.12.11 05:23:21.683
37 4.0.6.3170 2024.12.02 68abd P P 818 563 2024.12.04 06:14:51.043 2024.12.04 06:14:51.861 2024.12.04 05:13:30.507 2024.12.04 05:13:31.070
38 4.0.6.3169 2024.11.28 1673f P P 817 551 2024.11.30 06:12:56.623 2024.11.30 06:12:57.440 2024.11.30 05:11:31.529 2024.11.30 05:11:32.080
39 4.0.6.3168 2024.11.27 7fffc P P 832 566 2024.11.28 06:08:45.299 2024.11.28 06:08:46.131 2024.11.28 05:08:11.055 2024.11.28 05:08:11.621
40 4.0.6.3168 2024.11.07 f67e2 P P 854 574 2024.11.27 06:11:23.171 2024.11.27 06:11:24.025 2024.11.27 05:10:00.797 2024.11.27 05:10:01.371
41 4.0.6.3167 2024.11.04 c9228 P P 852 554 2024.11.05 06:04:04.350 2024.11.05 06:04:05.202 2024.11.05 05:03:46.927 2024.11.05 05:03:47.481
42 4.0.6.3165 2024.10.23 b0c36 P P 824 569 2024.11.04 11:53:56.684 2024.11.04 11:53:57.508 2024.11.04 10:53:27.034 2024.11.04 10:53:27.603
43 4.0.6.3164 2024.10.17 35344 P P 870 563 2024.10.23 06:13:25.491 2024.10.23 06:13:26.361 2024.10.23 05:12:15.635 2024.10.23 05:12:16.198
44 4.0.6.3161 2024.10.05 91502 P P 828 562 2024.10.15 06:10:30.701 2024.10.15 06:10:31.529 2024.10.15 05:09:50.844 2024.10.15 05:09:51.406
45 4.0.6.3159 2024.10.01 85136 P P 823 561 2024.10.05 06:14:35.442 2024.10.05 06:14:36.265 2024.10.05 05:12:43.930 2024.10.05 05:12:44.491
46 4.0.6.3158 2024.09.30 14c68 P P 887 560 2024.10.01 06:12:35.628 2024.10.01 06:12:36.515 2024.10.01 05:10:57.414 2024.10.01 05:10:57.974
47 4.0.6.3157 2024.09.24 3bb2e P P 869 563 2024.09.30 06:12:26.214 2024.09.30 06:12:27.083 2024.09.30 05:10:58.049 2024.09.30 05:10:58.612
48 4.0.6.3156 2024.09.21 f6416 P P 835 557 2024.09.24 06:11:39.964 2024.09.24 06:11:40.799 2024.09.24 05:10:26.275 2024.09.24 05:10:26.832
49 4.0.6.3155 2024.09.20 1ed0c P P 823 578 2024.09.21 06:13:01.283 2024.09.21 06:13:02.106 2024.09.21 05:11:35.666 2024.09.21 05:11:36.244
50 4.0.6.3151 2024.09.09 1b77f P P 825 559 2024.09.17 06:10:22.218 2024.09.17 06:10:23.043 2024.09.17 05:09:56.417 2024.09.17 05:09:56.976
51 4.0.6.3149 2024.09.04 32ce9 P P 831 564 2024.09.08 04:11:15.289 2024.09.08 04:11:16.120 2024.09.08 03:09:54.983 2024.09.08 03:09:55.547
52 4.0.6.3148 2024.09.02 4be5c P P 836 599 2024.09.04 06:14:05.409 2024.09.04 06:14:06.245 2024.09.04 05:12:09.772 2024.09.04 05:12:10.371
53 4.0.6.3147 2024.08.30 5ffd7 P P 827 576 2024.09.02 06:03:20.707 2024.09.02 06:03:21.534 2024.09.02 05:01:53.706 2024.09.02 05:01:54.282
54 4.0.6.3146 2024.08.27 38582 P P 861 547 2024.08.30 05:58:16.648 2024.08.30 05:58:17.509 2024.08.30 04:56:43.426 2024.08.30 04:56:43.973
55 4.0.6.3145 2024.08.21 87240 P P 830 563 2024.08.27 05:53:20.637 2024.08.27 05:53:21.467 2024.08.27 04:52:00.539 2024.08.27 04:52:01.102
56 4.0.6.3144 2024.08.20 5a3b7 P P 901 552 2024.08.21 05:51:36.740 2024.08.21 05:51:37.641 2024.08.21 04:49:32.759 2024.08.21 04:49:33.311
57 4.0.6.3142 2024.08.11 b9f39 P P 996 591 2024.08.19 06:01:56.279 2024.08.19 06:01:57.275 2024.08.19 04:57:55.427 2024.08.19 04:57:56.018
58 4.0.6.3141 2024.08.09 6d39f P P 978 602 2024.08.11 03:55:49.695 2024.08.11 03:55:50.673 2024.08.11 02:51:32.790 2024.08.11 02:51:33.392
59 4.0.5.3140 2024.08.06 64f3a P P 1037 595 2024.08.10 21:42:58.288 2024.08.10 21:42:59.325 2024.08.10 20:34:54.120 2024.08.10 20:34:54.715
60 4.0.5.3139 2024.08.01 3bc8b P P 871 480 2024.08.06 03:46:41.596 2024.08.06 03:46:42.467 2024.08.06 02:47:41.813 2024.08.06 02:47:42.293
61 4.0.5.3136 2024.07.31 e41ec P P 798 483 2024.08.01 12:18:15.620 2024.08.01 12:18:16.418 2024.08.01 11:21:26.262 2024.08.01 11:21:26.745
62 4.0.5.3135 2024.07.26 b4981 P P 818 468 2024.07.30 05:27:10.048 2024.07.30 05:27:10.866 2024.07.30 04:30:35.178 2024.07.30 04:30:35.646
63 4.0.5.3129 2024.07.24 b8184 P P 772 476 2024.07.25 05:26:51.228 2024.07.25 05:26:52.000 2024.07.25 04:30:14.613 2024.07.25 04:30:15.089
64 4.0.5.3128 2024.07.13 aa318 P P 833 469 2024.07.24 05:53:50.686 2024.07.24 05:53:51.519 2024.07.24 04:57:03.931 2024.07.24 04:57:04.400
65 4.0.5.3127 2024.07.10 eace3 P P 657 437 2024.07.13 05:23:08.645 2024.07.13 05:23:09.302 2024.07.13 04:27:26.723 2024.07.13 04:27:27.160
66 4.0.5.3123 2024.07.09 070ee P P 824 468 2024.07.10 05:38:03.567 2024.07.10 05:38:04.391 2024.07.10 04:39:54.226 2024.07.10 04:39:54.694
67 4.0.5.3123 2024.06.24 c27c6 P P 813 491 2024.07.09 05:37:26.441 2024.07.09 05:37:27.254 2024.07.09 04:38:35.269 2024.07.09 04:38:35.760
68 4.0.5.3112 2024.06.13 d2e61 P P 820 495 2024.06.21 22:12:11.604 2024.06.21 22:12:12.424 2024.06.21 21:13:14.090 2024.06.21 21:13:14.585
69 4.0.5.3109 2024.06.12 de9c0 P P 625 360 2024.06.13 03:03:57.986 2024.06.13 03:03:58.611 2024.06.13 02:11:19.432 2024.06.13 02:11:19.792
70 4.0.5.3109 2024.06.09 569cf P P 625 360 2024.06.11 03:04:16.481 2024.06.11 03:04:17.106 2024.06.11 02:11:31.311 2024.06.11 02:11:31.671
71 4.0.5.3103 2024.05.24 61480 P P 625 360 2024.05.25 03:01:10.555 2024.05.25 03:01:11.180 2024.05.25 02:08:56.470 2024.05.25 02:08:56.830
72 4.0.5.3100 2024.05.15 2dc0d P P 610 359 2024.05.24 03:03:38.775 2024.05.24 03:03:39.385 2024.05.24 02:10:26.859 2024.05.24 02:10:27.218
73 4.0.5.3098 2024.05.09 4c3ec P P 641 391 2024.05.15 02:59:38.821 2024.05.15 02:59:39.462 2024.05.15 02:07:32.457 2024.05.15 02:07:32.848
74 4.0.5.3097 2024.05.08 ec699 P P 656 359 2024.05.09 14:47:28.529 2024.05.09 14:47:29.185 2024.05.09 13:55:21.805 2024.05.09 13:55:22.164
75 4.0.5.3092 2024.05.06 bbc47 P P 610 359 2024.05.08 03:00:09.495 2024.05.08 03:00:10.105 2024.05.08 02:08:08.314 2024.05.08 02:08:08.673
76 4.0.5.3091 2024.04.29 062a7 P P 610 360 2024.04.30 02:57:54.853 2024.04.30 02:57:55.463 2024.04.30 02:06:13.893 2024.04.30 02:06:14.253
77 4.0.5.3089 2024.04.19 08c92 P P 609 359 2024.04.29 02:58:16.784 2024.04.29 02:58:17.393 2024.04.29 02:06:23.945 2024.04.29 02:06:24.304
78 4.0.5.3088 2024.04.17 c4484 P P 610 359 2024.04.19 02:58:19.495 2024.04.19 02:58:20.105 2024.04.19 02:06:07.886 2024.04.19 02:06:08.245
79 4.0.5.3086 2024.04.16 434ab P P 609 359 2024.04.17 02:55:16.259 2024.04.17 02:55:16.868 2024.04.17 02:03:42.460 2024.04.17 02:03:42.819
80 4.0.5.3083 2024.03.31 6ee48 P P 610 359 2024.04.13 02:50:41.079 2024.04.13 02:50:41.689 2024.04.13 01:59:18.343 2024.04.13 01:59:18.702
81 4.0.5.3082 2024.03.31 c768b P P 547 344 2024.04.04 14:27:05.533 2024.04.04 14:27:06.080 2024.04.04 13:39:14.842 2024.04.04 13:39:15.186
82 4.0.5.3082 2024.03.25 af9dc P P 562 342 2024.03.29 02:07:42.208 2024.03.29 02:07:42.770 2024.03.29 01:17:33.762 2024.03.29 01:17:34.104
83 4.0.5.3081 2024.03.22 17cd2 P P 577 343 2024.03.24 03:42:13.464 2024.03.24 03:42:14.041 2024.03.24 02:51:02.040 2024.03.24 02:51:02.383
84 4.0.5.3080 2024.03.22 5d44e P P 561 343 2024.03.22 16:26:45.884 2024.03.22 16:26:46.445 2024.03.22 15:38:37.169 2024.03.22 15:38:37.512
85 4.0.5.3080 2024.03.17 17edd P P 546 343 2024.03.20 19:53:54.831 2024.03.20 19:53:55.377 2024.03.20 19:05:49.970 2024.03.20 19:05:50.313

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):