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
firebird.driver.types.InterfaceError: Result code does not match request code

LOG DETAILS:

2025-06-20 08:45:43.903
2025-06-20 08:45:43.903 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-20 08:45:43.903 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-20 08:45:43.903
2025-06-20 08:45:43.903     @pytest.mark.encryption
2025-06-20 08:45:43.903     @pytest.mark.version('>=3.0.2')
2025-06-20 08:45:43.903     def test_1(act: Action, capsys):
2025-06-20 08:45:43.903         map_dbo = {}
2025-06-20 08:45:43.903
2025-06-20 08:45:43.903         # Query to find first generators page number:
2025-06-20 08:45:43.903         first_gens_page_sql = f"""
2025-06-20 08:45:43.903             select p.rdb$page_number
2025-06-20 08:45:43.903             from rdb$pages p
2025-06-20 08:45:43.903             where p.rdb$page_type = {GENS_PAGE}
2025-06-20 08:45:43.903             order by p.rdb$page_number desc
2025-06-20 08:45:43.903             rows 1
2025-06-20 08:45:43.903         """
2025-06-20 08:45:43.903
2025-06-20 08:45:43.903         # Query to find relation_id and first PP for 'TEST' table:
2025-06-20 08:45:43.904         first_pp_sql = f"""
2025-06-20 08:45:43.904             select p.rdb$relation_id, p.rdb$page_number
2025-06-20 08:45:43.904             from rdb$pages p
2025-06-20 08:45:43.904             join rdb$relations r on p.rdb$relation_id = r.rdb$relation_id
2025-06-20 08:45:43.904             where r.rdb$relation_name=upper('TEST') and p.rdb$page_type = {POINTER_PAGE}
2025-06-20 08:45:43.904             order by p.rdb$page_number
2025-06-20 08:45:43.904             rows 1
2025-06-20 08:45:43.904         """
2025-06-20 08:45:43.904
2025-06-20 08:45:43.904         broken_pages_map = { POINTER_PAGE : [], DATA_PAGE : [], IDX_ROOT_PAGE : [], IDX_B_TREE : [], BLOB_PAGE : [], GENS_PAGE : [] }
2025-06-20 08:45:43.904         with act.db.connect() as con:
2025-06-20 08:45:43.904             fill_dbo(con, map_dbo)
2025-06-20 08:45:43.904             c = con.cursor()
2025-06-20 08:45:43.904
2025-06-20 08:45:43.904             broken_pages_map[GENS_PAGE] = [c.execute(first_gens_page_sql).fetchone()[0],]
2025-06-20 08:45:43.904
2025-06-20 08:45:43.904             test_rel_id, test_rel_first_pp = c.execute(first_pp_sql).fetchone()
2025-06-20 08:45:43.904
2025-06-20 08:45:43.904             # Found first page for each of three types: Data, Index and Blob
2025-06-20 08:45:43.904             # (loop starts from first PointerPage of table 'TEST')
2025-06-20 08:45:43.905             brk_datapage = brk_indxpage = brk_blobpage = -1
2025-06-20 08:45:43.905
2025-06-20 08:45:43.905             for page_no in range(test_rel_first_pp, con.info.pages_allocated):
2025-06-20 08:45:43.905 >               page_type, relation_id, page_info = parse_page_header(con, page_no, map_dbo)
2025-06-20 08:45:43.905
2025-06-20 08:45:43.905 tests\bugs\core_5501_test.py:423:
2025-06-20 08:45:43.905 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-20 08:45:43.905
2025-06-20 08:45:43.905 con = Connection[2989], page_number = 406
2025-06-20 08:45:43.905 map_dbo = {(128, -1): ('TEST', ''), (128, 0): ('TEST', 'TEST_S_UNQ')}
2025-06-20 08:45:43.905
2025-06-20 08:45:43.905     def parse_page_header(con: Connection, page_number: int, map_dbo: Dict):
2025-06-20 08:45:43.905 >       page_buffer = con.info.get_page_content(page_number)
2025-06-20 08:45:43.905
2025-06-20 08:45:43.905 tests\bugs\core_5501_test.py:263:
2025-06-20 08:45:43.905 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-20 08:45:43.905
2025-06-20 08:45:43.905 self = <firebird.driver.core.DatabaseInfoProvider object at [hex]>
2025-06-20 08:45:43.905 page_number = 406
2025-06-20 08:45:43.905
2025-06-20 08:45:43.906     def get_page_content(self, page_number: int) -> bytes:
2025-06-20 08:45:43.906         """Returns content of single database page.
2025-06-20 08:45:43.906
2025-06-20 08:45:43.906         Arguments:
2025-06-20 08:45:43.906            page_number: Sequence number of database page to be fetched from server.
2025-06-20 08:45:43.906         """
2025-06-20 08:45:43.906 >       return self.get_info(DbInfoCode.PAGE_CONTENTS, page_number)
2025-06-20 08:45:43.906
2025-06-20 08:45:43.906 C:\Python3x\Lib\site-packages\firebird\driver\core.py:1338:
2025-06-20 08:45:43.906 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-20 08:45:43.906
2025-06-20 08:45:43.906 self = <firebird.driver.core.DatabaseInfoProvider object at [hex]>
2025-06-20 08:45:43.906 info_code = <DbInfoCode.PAGE_CONTENTS: 113>, page_number = 406
2025-06-20 08:45:43.906
2025-06-20 08:45:43.906     def get_info(self, info_code: DbInfoCode, page_number: int=None) -> Any:
2025-06-20 08:45:43.906         """Returns requested information from associated attachment.
2025-06-20 08:45:43.906
2025-06-20 08:45:43.906         Arguments:
2025-06-20 08:45:43.906             info_code: A code specifying the required information.
2025-06-20 08:45:43.906             page_number: A page number for `DbInfoCode.PAGE_CONTENTS` request. Ignored for other requests.
2025-06-20 08:45:43.907
2025-06-20 08:45:43.907         Returns:
2025-06-20 08:45:43.907             The data type of returned value depends on information required.
2025-06-20 08:45:43.907         """
2025-06-20 08:45:43.907         if info_code in self._cache:
2025-06-20 08:45:43.907             return self._cache[info_code]
2025-06-20 08:45:43.907         if info_code not in self._handlers:
2025-06-20 08:45:43.907             raise NotSupportedError(f"Info code {info_code} not supported by engine version {self.__engine_version}")
2025-06-20 08:45:43.907         self.response.clear()
2025-06-20 08:45:43.907         request = bytes([info_code])
2025-06-20 08:45:43.907         if info_code == DbInfoCode.PAGE_CONTENTS:
2025-06-20 08:45:43.907             request += (4).to_bytes(2, 'little')
2025-06-20 08:45:43.907             request += page_number.to_bytes(4, 'little')
2025-06-20 08:45:43.907             if len(self.response.raw) < self.page_size + 10:
2025-06-20 08:45:43.907                 self.response.resize(self.page_size + 10)
2025-06-20 08:45:43.907         self._get_data(request)
2025-06-20 08:45:43.907         tag = self.response.get_tag()
2025-06-20 08:45:43.907         if request[0] != tag:
2025-06-20 08:45:43.907             if info_code in (DbInfoCode.ACTIVE_TRANSACTIONS, DbInfoCode.LIMBO):
2025-06-20 08:45:43.908                 # isc_info_active_transactions and isc_info_limbo with no transactions to
2025-06-20 08:45:43.908                 # report returns empty buffer and does not follow this rule
2025-06-20 08:45:43.908                 pass
2025-06-20 08:45:43.908             elif tag == isc_info_error:  # pragma: no cover
2025-06-20 08:45:43.908                 raise InterfaceError("An error response was received")
2025-06-20 08:45:43.908             else:  # pragma: no cover
2025-06-20 08:45:43.908 >               raise InterfaceError("Result code does not match request code")
2025-06-20 08:45:43.908 E               firebird.driver.types.InterfaceError: Result code does not match request code
2025-06-20 08:45:43.908
2025-06-20 08:45:43.908 C:\Python3x\Lib\site-packages\firebird\driver\core.py:1316: InterfaceError
2025-06-20 08:45:43.908 ---------------------------- Captured stdout setup ----------------------------
2025-06-20 08:45:43.908 Creating db: localhost:H:\QA\temp\qa2024.tmp\fbqa\test_11118\test.fdb [page_size=8192, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.encryption
    @pytest.mark.version('>=3.0.2')
    def test_1(act: Action, capsys):
        map_dbo = {}
    
        # Query to find first generators page number:
        first_gens_page_sql = f"""
            select p.rdb$page_number
            from rdb$pages p
            where p.rdb$page_type = {GENS_PAGE}
            order by p.rdb$page_number desc
            rows 1
        """
    
        # Query to find relation_id and first PP for 'TEST' table:
        first_pp_sql = f"""
            select p.rdb$relation_id, p.rdb$page_number
            from rdb$pages p
            join rdb$relations r on p.rdb$relation_id = r.rdb$relation_id
            where r.rdb$relation_name=upper('TEST') and p.rdb$page_type = {POINTER_PAGE}
            order by p.rdb$page_number
            rows 1
        """
    
        broken_pages_map = { POINTER_PAGE : [], DATA_PAGE : [], IDX_ROOT_PAGE : [], IDX_B_TREE : [], BLOB_PAGE : [], GENS_PAGE : [] }
        with act.db.connect() as con:
            fill_dbo(con, map_dbo)
            c = con.cursor()
    
            broken_pages_map[GENS_PAGE] = [c.execute(first_gens_page_sql).fetchone()[0],]
    
            test_rel_id, test_rel_first_pp = c.execute(first_pp_sql).fetchone()
    
            # Found first page for each of three types: Data, Index and Blob
            # (loop starts from first PointerPage of table 'TEST')
            brk_datapage = brk_indxpage = brk_blobpage = -1
    
            for page_no in range(test_rel_first_pp, con.info.pages_allocated):
>               page_type, relation_id, page_info = parse_page_header(con, page_no, map_dbo)

tests\bugs\core_5501_test.py:423: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

con = Connection[2989], page_number = 406
map_dbo = {(128, -1): ('TEST', ''), (128, 0): ('TEST', 'TEST_S_UNQ')}

    def parse_page_header(con: Connection, page_number: int, map_dbo: Dict):
>       page_buffer = con.info.get_page_content(page_number)

tests\bugs\core_5501_test.py:263: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.core.DatabaseInfoProvider pytest object at [hex]>
page_number = 406

    def get_page_content(self, page_number: int) -> bytes:
        """Returns content of single database page.
    
        Arguments:
           page_number: Sequence number of database page to be fetched from server.
        """
>       return self.get_info(DbInfoCode.PAGE_CONTENTS, page_number)

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

self = <firebird.driver.core.DatabaseInfoProvider pytest object at [hex]>
info_code = <DbInfoCode.PAGE_CONTENTS: 113>, page_number = 406

    def get_info(self, info_code: DbInfoCode, page_number: int=None) -> Any:
        """Returns requested information from associated attachment.
    
        Arguments:
            info_code: A code specifying the required information.
            page_number: A page number for `DbInfoCode.PAGE_CONTENTS` request. Ignored for other requests.
    
        Returns:
            The data type of returned value depends on information required.
        """
        if info_code in self._cache:
            return self._cache[info_code]
        if info_code not in self._handlers:
            raise NotSupportedError(f"Info code {info_code} not supported by engine version {self.__engine_version}")
        self.response.clear()
        request = bytes([info_code])
        if info_code == DbInfoCode.PAGE_CONTENTS:
            request += (4).to_bytes(2, 'little')
            request += page_number.to_bytes(4, 'little')
            if len(self.response.raw) < self.page_size + 10:
                self.response.resize(self.page_size + 10)
        self._get_data(request)
        tag = self.response.get_tag()
        if request[0] != tag:
            if info_code in (DbInfoCode.ACTIVE_TRANSACTIONS, DbInfoCode.LIMBO):
                # isc_info_active_transactions and isc_info_limbo with no transactions to
                # report returns empty buffer and does not follow this rule
                pass
            elif tag == isc_info_error:  # pragma: no cover
                raise InterfaceError("An error response was received")
            else:  # pragma: no cover
>               raise InterfaceError("Result code does not match request code")
E               firebird.driver.types.InterfaceError: Result code does not match request code

C:\Python3x\Lib\site-packages\firebird\driver\core.py:1316: InterfaceError
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 5.0.3.1657 2025.06.20 8b4d2 F F 1455 913 2025.06.26 11:00:24.017 2025.06.26 11:00:25.472 2025.06.26 10:04:52.810 2025.06.26 10:04:53.723
2 5.0.3.1657 2025.06.19 4bd4c F F 1477 1030 2025.06.20 05:04:44.493 2025.06.20 05:04:45.970 2025.06.20 04:09:00.944 2025.06.20 04:09:01.974
3 5.0.3.1657 2025.06.11 dae6f F F 1461 1030 2025.06.19 10:36:20.266 2025.06.19 10:36:21.727 2025.06.19 09:40:34.796 2025.06.19 09:40:35.826
4 5.0.3.1657 2025.06.10 dbc92 F F 1492 1014 2025.06.11 08:22:25.824 2025.06.11 08:22:27.316 2025.06.11 07:26:25.458 2025.06.11 07:26:26.472
5 5.0.3.1656 2025.06.05 00512 F F 1468 1020 2025.06.10 09:37:47.667 2025.06.10 09:37:49.135 2025.06.10 08:41:26.951 2025.06.10 08:41:27.971
6 5.0.3.1656 2025.05.20 c4b11 F F 1474 1190 2025.06.03 09:24:59.084 2025.06.03 09:25:00.558 2025.06.03 08:29:44.402 2025.06.03 08:29:45.592
7 5.0.3.1652 2025.05.13 f51c6 F F 1451 1234 2025.05.21 06:06:05.884 2025.05.21 06:06:07.335 2025.05.21 05:10:59.027 2025.05.21 05:11:00.261
8 5.0.3.1651 2025.05.08 ee9d2 F F 1469 1433 2025.05.13 06:18:29.540 2025.05.13 06:18:31.009 2025.05.13 05:05:01.272 2025.05.13 05:05:02.705
9 5.0.3.1651 2025.05.04 3d914 F F 1519 1183 2025.05.09 04:07:38.626 2025.05.09 04:07:40.145 2025.05.09 02:54:03.100 2025.05.09 02:54:04.283
10 5.0.3.1651 2025.04.30 141ef F F 1533 1228 2025.05.02 04:15:23.217 2025.05.02 04:15:24.750 2025.05.02 03:01:55.207 2025.05.02 03:01:56.435
11 5.0.3.1650 2025.04.30 6253f F F 1506 826 2025.05.01 04:14:25.490 2025.05.01 04:14:26.996 2025.05.01 03:00:30.823 2025.05.01 03:00:31.649
12 5.0.3.1650 2025.04.28 4cbff F F 1845 1249 2025.04.30 04:13:23.165 2025.04.30 04:13:25.010 2025.04.30 03:00:08.946 2025.04.30 03:00:10.195
13 5.0.3.1649 2025.04.21 5b2d0 F F 1803 999 2025.04.26 09:46:50.325 2025.04.26 09:46:52.128 2025.04.26 08:32:40.994 2025.04.26 08:32:41.993
14 5.0.3.1648 2025.04.18 2f4c5 F F 1465 1239 2025.04.20 03:58:07.088 2025.04.20 03:58:08.553 2025.04.20 03:02:05.871 2025.04.20 03:02:07.110
15 5.0.3.1635 2025.04.03 f6bd1 F F 1476 1234 2025.04.18 06:25:51.400 2025.04.18 06:25:52.876 2025.04.18 05:11:24.415 2025.04.18 05:11:25.649
16 5.0.3.1635 2025.03.31 22ec6 F F 1497 921 2025.04.03 09:31:33.726 2025.04.03 09:31:35.223 2025.04.03 08:16:29.820 2025.04.03 08:16:30.741
17 5.0.3.1633 2025.03.28 3123a F F 1514 1315 2025.03.31 09:30:01.949 2025.03.31 09:30:03.463 2025.03.31 08:15:05.182 2025.03.31 08:15:06.497
18 5.0.3.1633 2025.03.27 e0fb8 F F 1515 771 2025.03.28 09:59:24.995 2025.03.28 09:59:26.510 2025.03.28 08:40:49.435 2025.03.28 08:40:50.206
19 5.0.3.1631 2025.03.25 bda65 F F 1841 1131 2025.03.27 09:39:57.651 2025.03.27 09:39:59.492 2025.03.27 08:40:10.177 2025.03.27 08:40:11.308
20 5.0.3.1631 2025.03.21 1925b F F 1826 1203 2025.03.25 06:13:53.053 2025.03.25 06:13:54.879 2025.03.25 05:14:02.499 2025.03.25 05:14:03.702
21 5.0.3.1629 2025.03.18 506d7 F F 1570 1032 2025.03.20 09:14:37.418 2025.03.20 09:14:38.988 2025.03.20 08:14:34.207 2025.03.20 08:14:35.239
22 5.0.3.1628 2025.03.14 16d05 F F 1536 1063 2025.03.18 09:09:10.049 2025.03.18 09:09:11.585 2025.03.18 08:10:16.465 2025.03.18 08:10:17.528
23 5.0.3.1627 2025.02.26 4e218 F F 1917 1150 2025.03.13 09:27:54.411 2025.03.13 09:27:56.328 2025.03.13 08:27:31.891 2025.03.13 08:27:33.041
24 5.0.3.1624 2025.02.25 dc3b2 F F 1483 762 2025.02.26 15:00:04.606 2025.02.26 15:00:06.089 2025.02.26 14:00:27.943 2025.02.26 14:00:28.705
25 5.0.2.1615 2025.02.20 4a726 F F 1506 1037 2025.02.25 08:14:53.221 2025.02.25 08:14:54.727 2025.02.25 06:58:37.948 2025.02.25 06:58:38.985
26 5.0.2.1615 2025.02.14 9cb76 F F 1354 1073 2025.02.15 03:42:50.754 2025.02.15 03:42:52.108 2025.02.15 02:44:46.104 2025.02.15 02:44:47.177
27 5.0.2.1577 2025.02.07 f50a2 F F 1474 743 2025.02.14 05:56:59.113 2025.02.14 05:57:00.587 2025.02.14 05:00:19.456 2025.02.14 05:00:20.199
28 5.0.2.1577 2024.12.24 3c80e F F 1482 956 2025.02.06 09:10:18.865 2025.02.06 09:10:20.347 2025.02.06 08:13:37.956 2025.02.06 08:13:38.912
29 5.0.2.1576 2024.12.17 646b0 F F 1832 741 2024.12.24 08:53:30.352 2024.12.24 08:53:32.184 2024.12.24 07:57:06.898 2024.12.24 07:57:07.639
30 5.0.2.1575 2024.12.09 9af52 F F 1518 1052 2024.12.16 08:50:30.951 2024.12.16 08:50:32.469 2024.12.16 07:54:09.027 2024.12.16 07:54:10.079
31 5.0.2.1575 2024.12.08 63d39 F F 1260 660 2024.12.09 14:41:55.751 2024.12.09 14:41:57.011 2024.12.09 13:50:36.717 2024.12.09 13:50:37.377
32 5.0.2.1571 2024.12.08 8d11a F F 1350 732 2024.12.09 05:55:06.411 2024.12.09 05:55:07.761 2024.12.09 05:01:51.711 2024.12.09 05:01:52.443
33 5.0.2.1567 2024.12.07 b01a2 F F 1445 749 2024.12.08 01:32:26.428 2024.12.08 01:32:27.873 2024.12.08 00:37:55.247 2024.12.08 00:37:55.996
34 5.0.2.1567 2024.12.02 6ae74 F F 1253 662 2024.12.04 08:37:33.879 2024.12.04 08:37:35.132 2024.12.04 07:46:01.162 2024.12.04 07:46:01.824
35 5.0.2.1567 2024.11.26 56e63 F F 1833 1067 2024.11.30 08:41:14.206 2024.11.30 08:41:16.039 2024.11.30 07:45:44.435 2024.11.30 07:45:45.502
36 5.0.2.1567 2024.11.21 96f61 F F 1471 1063 2024.11.27 08:38:19.879 2024.11.27 08:38:21.350 2024.11.27 07:43:07.163 2024.11.27 07:43:08.226
37 5.0.2.1567 2024.11.18 e1289 F F 1468 1071 2024.11.21 08:56:40.740 2024.11.21 08:56:42.208 2024.11.21 07:39:14.363 2024.11.21 07:39:15.434
38 5.0.2.1533 2024.10.23 0ec43 P P 2706 1898 2024.11.18 08:31:46.564 2024.11.18 08:31:49.270 2024.11.18 07:36:33.423 2024.11.18 07:36:35.321
39 5.0.2.1533 2024.10.22 8af7a P P 2708 1940 2024.10.23 08:39:43.877 2024.10.23 08:39:46.585 2024.10.23 07:44:26.768 2024.10.23 07:44:28.708
40 5.0.2.1532 2024.10.15 36dc0 P P 2710 1913 2024.10.22 14:41:56.570 2024.10.22 14:41:59.280 2024.10.22 13:46:41.620 2024.10.22 13:46:43.533
41 5.0.2.1518 2024.10.04 259ba P P 2728 1922 2024.10.15 08:36:05.155 2024.10.15 08:36:07.883 2024.10.15 07:40:52.395 2024.10.15 07:40:54.317
42 5.0.2.1518 2024.09.26 703cd P P 2691 1908 2024.10.03 08:40:52.846 2024.10.03 08:40:55.537 2024.10.03 07:45:34.525 2024.10.03 07:45:36.433
43 5.0.2.1489 2024.08.31 994a6 P P 2720 1921 2024.09.26 08:59:40.961 2024.09.26 08:59:43.681 2024.09.26 07:45:37.363 2024.09.26 07:45:39.284
44 5.0.2.1476 2024.08.09 843ea P P 2777 1950 2024.09.01 08:47:47.371 2024.09.01 08:47:50.148 2024.09.01 07:32:16.980 2024.09.01 07:32:18.930
45 5.0.1.1454 2024.08.08 30f9f P P 2782 1935 2024.08.09 08:30:09.596 2024.08.09 08:30:12.378 2024.08.09 07:35:23.756 2024.08.09 07:35:25.691
46 5.0.1.1453 2024.08.07 ebbc3 P P 2802 1948 2024.08.08 19:44:11.052 2024.08.08 19:44:13.854 2024.08.08 18:49:23.529 2024.08.08 18:49:25.477
47 5.0.1.1453 2024.08.06 1b9d0 P P 3163 1974 2024.08.07 08:00:45.790 2024.08.07 08:00:48.953 2024.08.07 07:10:18.449 2024.08.07 07:10:20.423
48 5.0.1.1453 2024.07.30 48044 P P 2702 1824 2024.08.03 07:59:21.190 2024.08.03 07:59:23.892 2024.08.03 07:08:34.429 2024.08.03 07:08:36.253
49 5.0.1.1453 2024.07.28 8d956 P P 2676 1834 2024.07.30 07:40:16.655 2024.07.30 07:40:19.331 2024.07.30 06:51:08.483 2024.07.30 06:51:10.317
50 5.0.1.1429 2024.07.19 8ee90 P P 2649 1830 2024.07.27 07:39:02.039 2024.07.27 07:39:04.688 2024.07.27 06:50:15.659 2024.07.27 06:50:17.489
51 5.0.1.1428 2024.07.15 00392 P P 2674 1825 2024.07.19 07:34:25.640 2024.07.19 07:34:28.314 2024.07.19 06:45:53.101 2024.07.19 06:45:54.926
52 5.0.1.1428 2024.06.30 67a31 P P 2576 1823 2024.07.15 07:46:09.535 2024.07.15 07:46:12.111 2024.07.15 06:56:01.345 2024.07.15 06:56:03.168
53 5.0.1.1415 2024.06.12 f8731 P P 2574 1829 2024.06.22 04:44:53.120 2024.06.22 04:44:55.694 2024.06.22 03:56:34.645 2024.06.22 03:56:36.474
54 5.0.1.1415 2024.06.11 31d74 P P 7329 6391 2024.06.11 23:16:08.177 2024.06.11 23:16:15.506 2024.06.11 22:32:19.415 2024.06.11 22:32:25.806
55 5.0.1.1401 2024.06.05 f9b76 P P 8017 6704 2024.06.11 04:06:50.874 2024.06.11 04:06:58.891 2024.06.11 03:22:53.950 2024.06.11 03:23:00.654
56 5.0.1.1398 2024.05.10 5e3ce P P 7469 6720 2024.05.25 05:02:03.082 2024.05.25 05:02:10.551 2024.05.25 04:18:13.833 2024.05.25 04:18:20.553
57 5.0.1.1397 2024.05.09 ee2ef P P 7470 6641 2024.05.10 04:58:24.761 2024.05.10 04:58:32.231 2024.05.10 04:15:05.193 2024.05.10 04:15:11.834
58 5.0.1.1392 2024.04.29 7dbc2 P P 7251 6470 2024.05.09 16:48:01.041 2024.05.09 16:48:08.292 2024.05.09 16:04:33.102 2024.05.09 16:04:39.572
59 5.0.1.1386 2024.04.25 c0328 P P 7219 6329 2024.04.29 04:57:23.474 2024.04.29 04:57:30.693 2024.04.29 04:14:11.871 2024.04.29 04:14:18.200
60 5.0.1.1386 2024.04.20 80571 P P 7281 6345 2024.04.25 04:59:32.192 2024.04.25 04:59:39.473 2024.04.25 04:15:55.894 2024.04.25 04:16:02.239
61 5.0.1.1378 2024.04.07 5292b P P 7141 6282 2024.04.20 05:19:33.565 2024.04.20 05:19:40.706 2024.04.20 04:14:33.914 2024.04.20 04:14:40.196
62 5.0.1.1346 2024.03.16 fe320 P P 7063 6282 2024.04.07 03:20:47.815 2024.04.07 03:20:54.878 2024.04.07 02:40:23.884 2024.04.07 02:40:30.166
63 5.0.1.1346 2024.03.02 da408 P P 6781 6077 2024.03.25 22:08:26.284 2024.03.25 22:08:33.065 2024.03.25 21:28:05.986 2024.03.25 21:28:12.063
64 5.0.1.1340 2024.02.17 08a71 P P 6781 6031 2024.03.25 23:38:08.935 2024.03.25 23:38:15.716 2024.03.25 22:57:53.823 2024.03.25 22:57:59.854
65 5.0.1.1325 2024.02.06 c98fb P P 6734 6015 2024.03.26 02:09:35.134 2024.03.26 02:09:41.868 2024.03.26 01:08:10.912 2024.03.26 01:08:16.927
66 5.0.1.1325 2024.02.02 1d438 P P 7797 6922 2024.03.26 07:26:36.748 2024.03.26 07:26:44.545 2024.03.26 06:24:16.044 2024.03.26 06:24:22.966
67 5.0.1.1325 2024.01.26 cffb6 P P 6844 6062 2024.03.26 09:52:46.646 2024.03.26 09:52:53.490 2024.03.26 08:51:19.819 2024.03.26 08:51:25.881
68 5.0.1.1325 2024.01.26 d3810 P P 6843 6062 2024.03.26 11:44:50.029 2024.03.26 11:44:56.872 2024.03.26 10:43:40.724 2024.03.26 10:43:46.786
69 5.0.1.1318 2024.01.21 a7ca3 P P 6860 6125 2024.03.26 13:13:51.451 2024.03.26 13:13:58.311 2024.03.26 12:33:47.451 2024.03.26 12:33:53.576
70 5.0.1.1318 2024.01.21 d429d P P 6562 6077 2024.03.26 14:55:31.520 2024.03.26 14:55:38.082 2024.03.26 14:15:25.588 2024.03.26 14:15:31.665
71 5.0.1.1318 2024.01.21 f1ab5 P P 6640 5921 2024.03.26 17:11:32.486 2024.03.26 17:11:39.126 2024.03.26 16:31:25.030 2024.03.26 16:31:30.951
72 5.0.1.1318 2024.01.20 46722 P P 6734 5953 2024.03.26 18:38:28.817 2024.03.26 18:38:35.551 2024.03.26 17:58:30.451 2024.03.26 17:58:36.404

Elapsed time, ms. Chart for last 72 runs:

Last commits information (all timestamps in UTC):