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_12193')
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_12193\\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_12193\\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 1208 2475 2025.06.26 08:11:26.845 2025.06.26 08:11:28.053 2025.06.26 07:05:29.774 2025.06.26 07:05:32.249
2 4.0.6.3214 2025.06.21 e11f6 P P 1212 770 2025.06.25 12:50:33.048 2025.06.25 12:50:34.260 2025.06.25 11:48:19.005 2025.06.25 11:48:19.775
3 4.0.6.3213 2025.06.14 f015c P P 1217 735 2025.06.21 07:51:08.994 2025.06.21 07:51:10.211 2025.06.21 06:48:39.048 2025.06.21 06:48:39.783
4 4.0.6.3212 2025.06.11 bc50d P P 1276 738 2025.06.14 08:18:49.299 2025.06.14 08:18:50.575 2025.06.14 07:15:43.044 2025.06.14 07:15:43.782
5 4.0.6.3208 2025.06.10 19fe3 P P 1275 775 2025.06.11 06:45:44.063 2025.06.11 06:45:45.338 2025.06.11 05:43:40.276 2025.06.11 05:43:41.051
6 4.0.6.3207 2025.06.07 205ff P P 1225 1420 2025.06.10 06:47:10.202 2025.06.10 06:47:11.427 2025.06.10 05:44:17.854 2025.06.10 05:44:19.274
7 4.0.6.3206 2025.05.22 d7d10 P P 1205 734 2025.06.06 06:40:45.275 2025.06.06 06:40:46.480 2025.06.06 05:39:19.718 2025.06.06 05:39:20.452
8 4.0.6.3205 2025.05.07 00148 P P 1234 719 2025.05.18 06:28:03.924 2025.05.18 06:28:05.158 2025.05.18 05:28:31.111 2025.05.18 05:28:31.830
9 4.0.6.3204 2025.05.06 35b85 P P 1212 735 2025.05.07 06:36:17.686 2025.05.07 06:36:18.898 2025.05.07 05:35:23.284 2025.05.07 05:35:24.019
10 4.0.6.3203 2025.05.05 c2cbd P P 1206 742 2025.05.06 06:36:35.237 2025.05.06 06:36:36.443 2025.05.06 05:35:31.112 2025.05.06 05:35:31.854
11 4.0.6.3200 2025.04.18 7ef56 P P 1232 730 2025.04.26 06:41:09.296 2025.04.26 06:41:10.528 2025.04.26 05:39:46.957 2025.04.26 05:39:47.687
12 4.0.6.3199 2025.04.14 33a10 P P 1235 726 2025.04.17 06:38:47.339 2025.04.17 06:38:48.574 2025.04.17 05:37:13.723 2025.04.17 05:37:14.449
13 4.0.6.3198 2025.04.13 64a7f P P 1211 732 2025.04.14 06:36:59.524 2025.04.14 06:37:00.735 2025.04.14 05:35:33.868 2025.04.14 05:35:34.600
14 4.0.6.3195 2025.04.12 82cb5 P P 1188 703 2025.04.13 06:21:48.134 2025.04.13 06:21:49.322 2025.04.13 05:22:49.207 2025.04.13 05:22:49.910
15 4.0.6.3195 2025.03.28 b9faf P P 1216 723 2025.04.12 06:41:58.719 2025.04.12 06:41:59.935 2025.04.12 05:39:38.138 2025.04.12 05:39:38.861
16 4.0.6.3194 2025.03.27 ab754 P P 1334 758 2025.03.28 06:54:33.305 2025.03.28 06:54:34.639 2025.03.28 05:51:47.527 2025.03.28 05:51:48.285
17 4.0.6.3194 2025.03.26 912aa P P 1273 782 2025.03.27 06:44:54.518 2025.03.27 06:44:55.791 2025.03.27 05:40:50.634 2025.03.27 05:40:51.416
18 4.0.6.3193 2025.03.20 80234 P P 1291 772 2025.03.24 06:45:21.227 2025.03.24 06:45:22.518 2025.03.24 05:41:01.124 2025.03.24 05:41:01.896
19 4.0.6.3192 2025.03.13 2a9da P P 1215 740 2025.03.20 06:32:37.484 2025.03.20 06:32:38.699 2025.03.20 05:30:21.035 2025.03.20 05:30:21.775
20 4.0.6.3191 2025.03.10 3d9fd P P 1244 758 2025.03.13 06:40:12.888 2025.03.13 06:40:14.132 2025.03.13 05:36:23.392 2025.03.13 05:36:24.150
21 4.0.6.3190 2025.02.25 c9928 P P 1207 729 2025.03.09 06:36:58.985 2025.03.09 06:37:00.192 2025.03.09 05:33:21.798 2025.03.09 05:33:22.527
22 4.0.6.3189 2025.02.22 3fb0b P P 1213 742 2025.02.25 06:25:54.019 2025.02.25 06:25:55.232 2025.02.25 05:23:54.278 2025.02.25 05:23:55.020
23 4.0.6.3188 2025.02.21 8ee1c P P 1200 731 2025.02.22 06:19:31.157 2025.02.22 06:19:32.357 2025.02.22 05:17:55.237 2025.02.22 05:17:55.968
24 4.0.6.3186 2025.02.19 92cb6 P P 1213 731 2025.02.20 04:17:18.086 2025.02.20 04:17:19.299 2025.02.20 03:15:04.155 2025.02.20 03:15:04.886
25 4.0.6.3185 2025.02.16 9cac4 P P 1231 750 2025.02.17 02:04:35.552 2025.02.17 02:04:36.783 2025.02.17 01:03:10.084 2025.02.17 01:03:10.834
26 4.0.6.3183 2025.02.04 bf738 P P 1217 735 2025.02.08 06:23:18.034 2025.02.08 06:23:19.251 2025.02.08 05:21:26.162 2025.02.08 05:21:26.897
27 4.0.6.3181 2025.02.01 00b64 P P 1198 726 2025.02.04 06:36:48.294 2025.02.04 06:36:49.492 2025.02.04 05:34:48.662 2025.02.04 05:34:49.388
28 4.0.6.3180 2025.01.27 2edb8 P P 1213 738 2025.01.28 06:19:52.610 2025.01.28 06:19:53.823 2025.01.28 05:18:38.206 2025.01.28 05:18:38.944
29 4.0.6.3179 2025.01.24 008d4 P P 1204 776 2025.01.25 04:10:06.828 2025.01.25 04:10:08.032 2025.01.25 03:08:52.786 2025.01.25 03:08:53.562
30 4.0.6.3178 2025.01.20 ec94d P P 1196 719 2025.01.24 06:20:36.030 2025.01.24 06:20:37.226 2025.01.24 05:19:12.422 2025.01.24 05:19:13.141
31 4.0.6.3176 2025.01.16 79cc1 P P 1203 757 2025.01.20 06:19:22.300 2025.01.20 06:19:23.503 2025.01.20 05:18:01.622 2025.01.20 05:18:02.379
32 4.0.6.3175 2025.01.15 91361 P P 1212 709 2025.01.16 06:23:09.091 2025.01.16 06:23:10.303 2025.01.16 05:21:26.463 2025.01.16 05:21:27.172
33 4.0.6.3174 2024.12.23 ffd39 P P 1243 725 2025.01.15 06:16:38.701 2025.01.15 06:16:39.944 2025.01.15 05:14:55.166 2025.01.15 05:14:55.891
34 4.0.6.3173 2024.12.19 60b32 P P 1256 771 2024.12.21 17:16:27.480 2024.12.21 17:16:28.736 2024.12.21 16:14:37.151 2024.12.21 16:14:37.922
35 4.0.6.3172 2024.12.11 33f5d P P 1205 714 2024.12.16 06:18:41.100 2024.12.16 06:18:42.305 2024.12.16 05:17:15.694 2024.12.16 05:17:16.408
36 4.0.6.3171 2024.12.10 ab1d4 P P 1227 736 2024.12.11 06:21:05.253 2024.12.11 06:21:06.480 2024.12.11 05:19:31.255 2024.12.11 05:19:31.991
37 4.0.6.3170 2024.12.02 68abd P P 1219 729 2024.12.04 06:09:55.442 2024.12.04 06:09:56.661 2024.12.04 05:09:36.612 2024.12.04 05:09:37.341
38 4.0.6.3169 2024.11.28 1673f P P 1222 736 2024.11.30 06:07:54.635 2024.11.30 06:07:55.857 2024.11.30 05:07:42.246 2024.11.30 05:07:42.982
39 4.0.6.3168 2024.11.27 7fffc P P 1245 727 2024.11.28 06:03:51.203 2024.11.28 06:03:52.448 2024.11.28 05:04:20.339 2024.11.28 05:04:21.066
40 4.0.6.3168 2024.11.07 f67e2 P P 1242 718 2024.11.27 06:06:20.713 2024.11.27 06:06:21.955 2024.11.27 05:06:01.813 2024.11.27 05:06:02.531
41 4.0.6.3167 2024.11.04 c9228 P P 1212 724 2024.11.05 05:59:13.093 2024.11.05 05:59:14.305 2024.11.05 04:59:58.096 2024.11.05 04:59:58.820
42 4.0.6.3165 2024.10.23 b0c36 P P 1216 717 2024.11.04 11:49:01.314 2024.11.04 11:49:02.530 2024.11.04 10:49:37.681 2024.11.04 10:49:38.398
43 4.0.6.3164 2024.10.17 35344 P P 1238 728 2024.10.23 06:08:25.755 2024.10.23 06:08:26.993 2024.10.23 05:08:24.256 2024.10.23 05:08:24.984
44 4.0.6.3161 2024.10.05 91502 P P 1210 713 2024.10.15 06:05:36.754 2024.10.15 06:05:37.964 2024.10.15 05:06:02.319 2024.10.15 05:06:03.032
45 4.0.6.3159 2024.10.01 85136 P P 1212 775 2024.10.05 06:09:32.493 2024.10.05 06:09:33.705 2024.10.05 05:08:53.070 2024.10.05 05:08:53.845
46 4.0.6.3158 2024.09.30 14c68 P P 1289 729 2024.10.01 06:07:41.605 2024.10.01 06:07:42.894 2024.10.01 05:07:08.661 2024.10.01 05:07:09.390
47 4.0.6.3157 2024.09.24 3bb2e P P 1301 738 2024.09.30 06:07:16.103 2024.09.30 06:07:17.404 2024.09.30 05:07:06.214 2024.09.30 05:07:06.952
48 4.0.6.3156 2024.09.21 f6416 P P 1209 775 2024.09.24 06:06:40.068 2024.09.24 06:06:41.277 2024.09.24 05:06:34.797 2024.09.24 05:06:35.572
49 4.0.6.3155 2024.09.20 1ed0c P P 1209 724 2024.09.21 06:08:11.113 2024.09.21 06:08:12.322 2024.09.21 05:07:44.430 2024.09.21 05:07:45.154
50 4.0.6.3151 2024.09.09 1b77f P P 1203 793 2024.09.17 06:05:27.802 2024.09.17 06:05:29.005 2024.09.17 05:06:05.869 2024.09.17 05:06:06.662
51 4.0.6.3149 2024.09.04 32ce9 P P 1210 730 2024.09.08 04:06:24.136 2024.09.08 04:06:25.346 2024.09.08 03:06:05.167 2024.09.08 03:06:05.897
52 4.0.6.3148 2024.09.02 4be5c P P 1225 736 2024.09.04 06:09:02.825 2024.09.04 06:09:04.050 2024.09.04 05:08:18.529 2024.09.04 05:08:19.265
53 4.0.6.3147 2024.08.30 5ffd7 P P 1229 728 2024.09.02 05:58:27.224 2024.09.02 05:58:28.453 2024.09.02 04:57:59.886 2024.09.02 04:58:00.614
54 4.0.6.3146 2024.08.27 38582 P P 1212 737 2024.08.30 05:53:20.920 2024.08.30 05:53:22.132 2024.08.30 04:52:53.697 2024.08.30 04:52:54.434
55 4.0.6.3145 2024.08.21 87240 P P 1215 719 2024.08.27 05:48:27.237 2024.08.27 05:48:28.452 2024.08.27 04:48:10.173 2024.08.27 04:48:10.892
56 4.0.6.3144 2024.08.20 5a3b7 P P 1251 718 2024.08.21 05:46:19.773 2024.08.21 05:46:21.024 2024.08.21 04:45:44.190 2024.08.21 04:45:44.908
57 4.0.6.3142 2024.08.11 b9f39 P P 1363 755 2024.08.19 05:56:27.379 2024.08.19 05:56:28.742 2024.08.19 04:54:02.450 2024.08.19 04:54:03.205
58 4.0.6.3141 2024.08.09 6d39f P P 1319 764 2024.08.11 03:50:24.379 2024.08.11 03:50:25.698 2024.08.11 02:47:37.058 2024.08.11 02:47:37.822
59 4.0.5.3140 2024.08.06 64f3a P P 1365 775 2024.08.10 21:37:24.614 2024.08.10 21:37:25.979 2024.08.10 20:31:00.097 2024.08.10 20:31:00.872
60 4.0.5.3139 2024.08.01 3bc8b P P 1202 682 2024.08.06 03:41:47.085 2024.08.06 03:41:48.287 2024.08.06 02:43:56.788 2024.08.06 02:43:57.470
61 4.0.5.3136 2024.07.31 e41ec P P 1250 645 2024.08.01 12:13:29.080 2024.08.01 12:13:30.330 2024.08.01 11:17:46.591 2024.08.01 11:17:47.236
62 4.0.5.3135 2024.07.26 b4981 P P 1111 644 2024.07.30 05:22:25.635 2024.07.30 05:22:26.746 2024.07.30 04:26:56.811 2024.07.30 04:26:57.455
63 4.0.5.3129 2024.07.24 b8184 P P 1169 653 2024.07.25 05:22:06.217 2024.07.25 05:22:07.386 2024.07.25 04:26:35.149 2024.07.25 04:26:35.802
64 4.0.5.3128 2024.07.13 aa318 P P 1114 655 2024.07.24 05:49:06.210 2024.07.24 05:49:07.324 2024.07.24 04:53:24.120 2024.07.24 04:53:24.775
65 4.0.5.3127 2024.07.10 eace3 P P 1062 609 2024.07.13 05:18:38.691 2024.07.13 05:18:39.753 2024.07.13 04:23:53.705 2024.07.13 04:23:54.314
66 4.0.5.3123 2024.07.09 070ee P P 1173 627 2024.07.10 05:33:18.991 2024.07.10 05:33:20.164 2024.07.10 04:36:15.982 2024.07.10 04:36:16.609
67 4.0.5.3123 2024.06.24 c27c6 P P 1125 636 2024.07.09 05:32:37.445 2024.07.09 05:32:38.570 2024.07.09 04:34:55.117 2024.07.09 04:34:55.753
68 4.0.5.3112 2024.06.13 d2e61 P P 1116 659 2024.06.21 22:07:25.619 2024.06.21 22:07:26.735 2024.06.21 21:07:15.108 2024.06.21 21:07:15.767
69 4.0.5.3109 2024.06.12 de9c0 P P 1141 484 2024.06.13 02:59:32.405 2024.06.13 02:59:33.546 2024.06.13 02:08:03.253 2024.06.13 02:08:03.737
70 4.0.5.3109 2024.06.09 569cf P P 1140 484 2024.06.11 02:59:50.702 2024.06.11 02:59:51.842 2024.06.11 02:08:15.255 2024.06.11 02:08:15.739
71 4.0.5.3103 2024.05.24 61480 P P 1125 484 2024.05.25 02:56:45.195 2024.05.25 02:56:46.320 2024.05.25 02:05:39.619 2024.05.25 02:05:40.103
72 4.0.5.3100 2024.05.15 2dc0d P P 1125 485 2024.05.24 02:59:10.463 2024.05.24 02:59:11.588 2024.05.24 02:07:10.913 2024.05.24 02:07:11.398
73 4.0.5.3098 2024.05.09 4c3ec P P 1156 485 2024.05.15 02:55:11.964 2024.05.15 02:55:13.120 2024.05.15 02:04:16.748 2024.05.15 02:04:17.233
74 4.0.5.3097 2024.05.08 ec699 P P 1143 484 2024.05.09 14:43:04.278 2024.05.09 14:43:05.421 2024.05.09 13:52:06.034 2024.05.09 13:52:06.518
75 4.0.5.3092 2024.05.06 bbc47 P P 1156 500 2024.05.08 02:55:44.225 2024.05.08 02:55:45.381 2024.05.08 02:04:52.617 2024.05.08 02:04:53.117
76 4.0.5.3091 2024.04.29 062a7 P P 1156 500 2024.04.30 02:53:31.445 2024.04.30 02:53:32.601 2024.04.30 02:02:58.431 2024.04.30 02:02:58.931
77 4.0.5.3089 2024.04.19 08c92 P P 1157 1078 2024.04.29 02:53:53.077 2024.04.29 02:53:54.234 2024.04.29 02:03:06.746 2024.04.29 02:03:07.824
78 4.0.5.3088 2024.04.17 c4484 P P 1141 484 2024.04.19 02:53:54.246 2024.04.19 02:53:55.387 2024.04.19 02:02:52.302 2024.04.19 02:02:52.786
79 4.0.5.3086 2024.04.16 434ab P P 1141 485 2024.04.17 02:50:52.465 2024.04.17 02:50:53.606 2024.04.17 02:00:26.809 2024.04.17 02:00:27.294
80 4.0.5.3083 2024.03.31 6ee48 P P 1140 484 2024.04.13 02:46:16.753 2024.04.13 02:46:17.893 2024.04.13 01:56:02.634 2024.04.13 01:56:03.118
81 4.0.5.3082 2024.03.31 c768b P P 953 453 2024.04.04 14:22:54.038 2024.04.04 14:22:54.991 2024.04.04 13:36:02.415 2024.04.04 13:36:02.868
82 4.0.5.3082 2024.03.25 af9dc P P 1124 452 2024.03.29 02:03:21.117 2024.03.29 02:03:22.241 2024.03.29 01:14:21.147 2024.03.29 01:14:21.599
83 4.0.5.3081 2024.03.22 17cd2 P P 1109 452 2024.03.24 03:37:52.826 2024.03.24 03:37:53.935 2024.03.24 02:47:49.441 2024.03.24 02:47:49.893
84 4.0.5.3080 2024.03.22 5d44e P P 936 467 2024.03.22 16:22:35.748 2024.03.22 16:22:36.684 2024.03.22 15:35:24.476 2024.03.22 15:35:24.943
85 4.0.5.3080 2024.03.17 17edd P P 936 452 2024.03.20 19:49:45.117 2024.03.20 19:49:46.053 2024.03.20 19:02:37.653 2024.03.20 19:02:38.105

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):