Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
Authentification problem

firebird.qa.plugin.ExecutionError: ISQL execution failed

LOG DETAILS:

2024-05-09 21:54:22.839
2024-05-09 21:54:22.839 act = <firebird.qa.plugin.Action object at [hex]>
2024-05-09 21:54:22.839 test_role = <firebird.qa.plugin.Role object at [hex]>
2024-05-09 21:54:22.839 tmp_file = WindowsPath('R:/temp/qa/fbqa/test_11386/c6469_tmp.sql')
2024-05-09 21:54:22.840 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2024-05-09 21:54:22.840
2024-05-09 21:54:22.840     @pytest.mark.version('>=4.0')
2024-05-09 21:54:22.840     @pytest.mark.platform('Windows')
2024-05-09 21:54:22.840     def test_1(act: Action, test_role: Role, tmp_file: Path,  capsys):
2024-05-09 21:54:22.840         with act.trace(db_events=trace_win):
2024-05-09 21:54:22.840 >           run_script(act, tmp_file)
2024-05-09 21:54:22.840
2024-05-09 21:54:22.840 tests\bugs\core_6469_test.py:191:
2024-05-09 21:54:22.840 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2024-05-09 21:54:22.840
2024-05-09 21:54:22.840 act = <firebird.qa.plugin.Action object at [hex]>
2024-05-09 21:54:22.840 tmp_file = WindowsPath('R:/temp/qa/fbqa/test_11386/c6469_tmp.sql')
2024-05-09 21:54:22.840
2024-05-09 21:54:22.840     def run_script(act: Action, tmp_file: Path):
2024-05-09 21:54:22.840         #__tracebackhide__ = True
2024-05-09 21:54:22.840         THIS_COMPUTER_NAME = socket.gethostname()
2024-05-09 21:54:22.840         CURRENT_WIN_ADMIN = getpass.getuser()
2024-05-09 21:54:22.840         script = f"""
2024-05-09 21:54:22.840         set bail on;
2024-05-09 21:54:22.840         set list on;
2024-05-09 21:54:22.840         set echo on;
2024-05-09 21:54:22.840         connect '{act.db.dsn}' user '{act.db.user}' password '{act.db.password}';
2024-05-09 21:54:22.840         grant tmp$r6469 to "{THIS_COMPUTER_NAME}\\{CURRENT_WIN_ADMIN}";
2024-05-09 21:54:22.840         commit;
2024-05-09 21:54:22.840
2024-05-09 21:54:22.840         -- We have to use here "create mapping trusted_auth ... from any user to user" otherwise get
2024-05-09 21:54:22.841         -- Statement failed, SQLSTATE = 28000 /Missing security context for C:\\FBTESTING\\QA\\MISC\\C5887.FDB
2024-05-09 21:54:22.841         -- on connect statement which specifies COMPUTERNAME:USERNAME instead path to DB:
2024-05-09 21:54:22.841         create or alter mapping trusted_auth using plugin win_sspi from any user to user;
2024-05-09 21:54:22.841
2024-05-09 21:54:22.841         -- We have to use here "create mapping win_admins ... DOMAIN_ANY_RID_ADMINS" otherwise get
2024-05-09 21:54:22.841         -- Statement failed, SQLSTATE = 0P000 / Your attachment has no trusted role
2024-05-09 21:54:22.841         create or alter mapping win_admins using plugin win_sspi from predefined_group domain_any_rid_admins to role tmp$r6469;
2024-05-09 21:54:22.841         commit;
2024-05-09 21:54:22.841
2024-05-09 21:54:22.841         -- We have to GRANT ROLE, even to SYSDBA. Otherwise:
2024-05-09 21:54:22.841         -- Statement failed, SQLSTATE = 0P000
2024-05-09 21:54:22.841         -- Role TMP$R6469 is invalid or unavailable
2024-05-09 21:54:22.841         grant TMP$R6469 to sysdba;
2024-05-09 21:54:22.841         commit;
2024-05-09 21:54:22.841         show role;
2024-05-09 21:54:22.841         show grants;
2024-05-09 21:54:22.841         show mapping;
2024-05-09 21:54:22.841
2024-05-09 21:54:22.841         set autoddl off;
2024-05-09 21:54:22.841         commit;
2024-05-09 21:54:22.841
2024-05-09 21:54:22.841         -- Following management statements are taken from
2024-05-09 21:54:22.841         -- doc/sql.extensions/README.management_statements_psql.md:
2024-05-09 21:54:22.841         -- ########################################################
2024-05-09 21:54:22.841         alter session reset;
2024-05-09 21:54:22.841         set session idle timeout 1800 second;
2024-05-09 21:54:22.842         set statement timeout 190 second;
2024-05-09 21:54:22.842         set bind of decfloat to double precision;
2024-05-09 21:54:22.842         set decfloat round ceiling;
2024-05-09 21:54:22.842         set decfloat traps to Division_by_zero;
2024-05-09 21:54:22.842         set time zone 'America/Sao_Paulo';
2024-05-09 21:54:22.842         set role tmp$r6469;
2024-05-09 21:54:22.842         commit;
2024-05-09 21:54:22.842
2024-05-09 21:54:22.842         connect '{THIS_COMPUTER_NAME}:{act.db.db_path}' role tmp$r6469;
2024-05-09 21:54:22.842
2024-05-09 21:54:22.842         select mon$user,mon$role,mon$auth_method from mon$attachments where mon$attachment_id = current_connection;
2024-05-09 21:54:22.842         commit;
2024-05-09 21:54:22.842
2024-05-09 21:54:22.842         set trusted role;
2024-05-09 21:54:22.842         commit;
2024-05-09 21:54:22.842
2024-05-09 21:54:22.842         connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
2024-05-09 21:54:22.842         drop mapping trusted_auth;
2024-05-09 21:54:22.842         drop mapping win_admins;
2024-05-09 21:54:22.842         commit;
2024-05-09 21:54:22.842         """
2024-05-09 21:54:22.842         tmp_file.write_text(script)
2024-05-09 21:54:22.842
2024-05-09 21:54:22.842 >       act.isql(switches=['-n'], input_file = tmp_file, connect_db = False, credentials = False)
2024-05-09 21:54:22.842 E       firebird.qa.plugin.ExecutionError: ISQL execution failed
2024-05-09 21:54:22.842
2024-05-09 21:54:22.842 tests\bugs\core_6469_test.py:185: ExecutionError
2024-05-09 21:54:22.843 ---------------------------- Captured stdout setup ----------------------------
2024-05-09 21:54:22.843 Cached db: db-13.0-None-None-NONE.fdb [page_size=None, sql_dialect=None, charset='NONE'
2024-05-09 21:54:22.843 CREATE role: TMP$R6469
2024-05-09 21:54:22.843 -------------------------- Captured ISQL stdout call --------------------------
2024-05-09 21:54:22.845     connect 'localhost:R:\temp\qa\fbqa\test_11386\test.fdb' user 'SYSDBA' password 'masterkey';
2024-05-09 21:54:22.845     grant tmp$r6469 to "HOME-AUX2\zotov";
2024-05-09 21:54:22.845     commit;
2024-05-09 21:54:22.845
2024-05-09 21:54:22.845     -- We have to use here "create mapping trusted_auth ... from any user to user" otherwise get
2024-05-09 21:54:22.845     -- Statement failed, SQLSTATE = 28000 /Missing security context for C:\FBTESTING\QA\MISC\C5887.FDB
2024-05-09 21:54:22.845     -- on connect statement which specifies COMPUTERNAME:USERNAME instead path to DB:
2024-05-09 21:54:22.845     create or alter mapping trusted_auth using plugin win_sspi from any user to user;
2024-05-09 21:54:22.845
2024-05-09 21:54:22.845     -- We have to use here "create mapping win_admins ... DOMAIN_ANY_RID_ADMINS" otherwise get
2024-05-09 21:54:22.845     -- Statement failed, SQLSTATE = 0P000 / Your attachment has no trusted role
2024-05-09 21:54:22.845     create or alter mapping win_admins using plugin win_sspi from predefined_group domain_any_rid_admins to role tmp$r6469;
2024-05-09 21:54:22.845     commit;
2024-05-09 21:54:22.845
2024-05-09 21:54:22.845     -- We have to GRANT ROLE, even to SYSDBA. Otherwise:
2024-05-09 21:54:22.845     -- Statement failed, SQLSTATE = 0P000
2024-05-09 21:54:22.845     -- Role TMP$R6469 is invalid or unavailable
2024-05-09 21:54:22.845     grant TMP$R6469 to sysdba;
2024-05-09 21:54:22.846     commit;
2024-05-09 21:54:22.846     show role;
2024-05-09 21:54:22.846 TMP$R6469
2024-05-09 21:54:22.846
2024-05-09 21:54:22.846     show grants;
2024-05-09 21:54:22.846
2024-05-09 21:54:22.846 /* Grant permissions for this database */
2024-05-09 21:54:22.846 GRANT TMP$R6469 TO HOME-AUX2\zotov
2024-05-09 21:54:22.846 GRANT TMP$R6469 TO SYSDBA
2024-05-09 21:54:22.846     show mapping;
2024-05-09 21:54:22.846 TRUSTED_AUTH USING PLUGIN WIN_SSPI FROM ANY USER TO USER
2024-05-09 21:54:22.846 WIN_ADMINS USING PLUGIN WIN_SSPI FROM PREDEFINED_GROUP DOMAIN_ANY_RID_ADMINS TO ROLE TMP$R6469
2024-05-09 21:54:22.846
2024-05-09 21:54:22.846     set autoddl off;
2024-05-09 21:54:22.846     commit;
2024-05-09 21:54:22.846
2024-05-09 21:54:22.846     -- Following management statements are taken from
2024-05-09 21:54:22.846     -- doc/sql.extensions/README.management_statements_psql.md:
2024-05-09 21:54:22.846     -- ########################################################
2024-05-09 21:54:22.846     alter session reset;
2024-05-09 21:54:22.846     set session idle timeout 1800 second;
2024-05-09 21:54:22.846     set statement timeout 190 second;
2024-05-09 21:54:22.846     set bind of decfloat to double precision;
2024-05-09 21:54:22.846     set decfloat round ceiling;
2024-05-09 21:54:22.846     set decfloat traps to Division_by_zero;
2024-05-09 21:54:22.846     set time zone 'America/Sao_Paulo';
2024-05-09 21:54:22.846     set role tmp$r6469;
2024-05-09 21:54:22.846     commit;
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847     connect 'HOME-AUX2:R:\temp\qa\fbqa\test_11386\test.fdb' role tmp$r6469;
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847     select mon$user,mon$role,mon$auth_method from mon$attachments where mon$attachment_id = current_connection;
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847 MON$USER                        HOME-AUX2\ZOTOV
2024-05-09 21:54:22.847 MON$ROLE                        TMP$R6469
2024-05-09 21:54:22.847 MON$AUTH_METHOD                 Mapped from Win_Sspi
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847     commit;
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847     set trusted role;
2024-05-09 21:54:22.847     commit;
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847     connect 'localhost:R:\temp\qa\fbqa\test_11386\test.fdb' user SYSDBA password 'masterkey';
2024-05-09 21:54:22.847     drop mapping trusted_auth;
2024-05-09 21:54:22.847     drop mapping win_admins;
2024-05-09 21:54:22.847     commit;
2024-05-09 21:54:22.847
2024-05-09 21:54:22.847 -------------------------- Captured ISQL stderr call --------------------------
2024-05-09 21:54:22.847 Use CONNECT or CREATE DATABASE to specify a database
2024-05-09 21:54:22.847 -------------------------- Captured stdout teardown ---------------------------
2024-05-09 21:54:22.847 DROP role: TMP$R6469
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
test_role = <firebird.qa.plugin.Role pytest object at [hex]>
tmp_file = WindowsPath('R:/temp/qa/fbqa/test_11386/c6469_tmp.sql')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.version('>=4.0')
    @pytest.mark.platform('Windows')
    def test_1(act: Action, test_role: Role, tmp_file: Path,  capsys):
        with act.trace(db_events=trace_win):
>           run_script(act, tmp_file)

tests\bugs\core_6469_test.py:191: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

act = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_file = WindowsPath('R:/temp/qa/fbqa/test_11386/c6469_tmp.sql')

    def run_script(act: Action, tmp_file: Path):
        #__tracebackhide__ = True
        THIS_COMPUTER_NAME = socket.gethostname()
        CURRENT_WIN_ADMIN = getpass.getuser()
        script = f"""
        set bail on;
        set list on;
        set echo on;
        connect '{act.db.dsn}' user '{act.db.user}' password '{act.db.password}';
        grant tmp$r6469 to "{THIS_COMPUTER_NAME}\\{CURRENT_WIN_ADMIN}";
        commit;
    
        -- We have to use here "create mapping trusted_auth ... from any user to user" otherwise get
        -- Statement failed, SQLSTATE = 28000 /Missing security context for C:\\FBTESTING\\QA\\MISC\\C5887.FDB
        -- on connect statement which specifies COMPUTERNAME:USERNAME instead path to DB:
        create or alter mapping trusted_auth using plugin win_sspi from any user to user;
    
        -- We have to use here "create mapping win_admins ... DOMAIN_ANY_RID_ADMINS" otherwise get
        -- Statement failed, SQLSTATE = 0P000 / Your attachment has no trusted role
        create or alter mapping win_admins using plugin win_sspi from predefined_group domain_any_rid_admins to role tmp$r6469;
        commit;
    
        -- We have to GRANT ROLE, even to SYSDBA. Otherwise:
        -- Statement failed, SQLSTATE = 0P000
        -- Role TMP$R6469 is invalid or unavailable
        grant TMP$R6469 to sysdba;
        commit;
        show role;
        show grants;
        show mapping;
    
        set autoddl off;
        commit;
    
        -- Following management statements are taken from
        -- doc/sql.extensions/README.management_statements_psql.md:
        -- ########################################################
        alter session reset;
        set session idle timeout 1800 second;
        set statement timeout 190 second;
        set bind of decfloat to double precision;
        set decfloat round ceiling;
        set decfloat traps to Division_by_zero;
        set time zone 'America/Sao_Paulo';
        set role tmp$r6469;
        commit;
    
        connect '{THIS_COMPUTER_NAME}:{act.db.db_path}' role tmp$r6469;
    
        select mon$user,mon$role,mon$auth_method from mon$attachments where mon$attachment_id = current_connection;
        commit;
    
        set trusted role;
        commit;
    
        connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
        drop mapping trusted_auth;
        drop mapping win_admins;
        commit;
        """
        tmp_file.write_text(script)
    
>       act.isql(switches=['-n'], input_file = tmp_file, connect_db = False, credentials = False)
E       firebird.qa.plugin.ExecutionError: ISQL execution failed

tests\bugs\core_6469_test.py:185: ExecutionError
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.3189 2025.02.25 1a1a5 P P 3389 2838 2025.06.28 13:11:32.266 2025.06.28 13:11:35.655 2025.06.28 12:13:57.481 2025.06.28 12:14:00.319
2 4.0.6.3184 2025.02.24 9388c P P 4169 2772 2025.02.25 10:50:14.519 2025.02.25 10:50:18.688 2025.02.25 09:34:16.463 2025.02.25 09:34:19.235
3 4.0.6.3183 2025.02.17 e4762 P P 3387 2791 2025.02.24 11:22:21.186 2025.02.24 11:22:24.573 2025.02.24 10:24:39.811 2025.02.24 10:24:42.602
4 4.0.6.3169 2024.12.13 42cc1 P P 3435 2774 2025.02.14 08:10:21.910 2025.02.14 08:10:25.345 2025.02.14 07:12:30.768 2025.02.14 07:12:33.542
5 4.0.6.3169 2024.12.08 50eb6 P P 3403 2765 2024.12.11 11:06:51.982 2024.12.11 11:06:55.385 2024.12.11 10:09:23.556 2024.12.11 10:09:26.321
6 4.0.6.3168 2024.12.07 98d69 P P 3561 2787 2024.12.08 03:50:04.048 2024.12.08 03:50:07.609 2024.12.08 02:51:03.264 2024.12.08 02:51:06.051
7 4.0.6.3168 2024.12.05 cee43 P P 3418 2790 2024.12.06 03:53:37.870 2024.12.06 03:53:41.288 2024.12.06 02:55:43.906 2024.12.06 02:55:46.696
8 4.0.6.3168 2024.11.28 48149 P P 3429 2777 2024.12.03 10:46:50.049 2024.12.03 10:46:53.478 2024.12.03 09:50:07.837 2024.12.03 09:50:10.614
9 4.0.6.3163 2024.10.30 832db P P 3443 2819 2024.11.28 10:45:29.471 2024.11.28 10:45:32.914 2024.11.28 09:49:01.766 2024.11.28 09:49:04.585
10 4.0.6.3163 2024.10.16 2bb10 P P 3389 2786 2024.10.30 10:54:31.511 2024.10.30 10:54:34.900 2024.10.30 09:57:49.095 2024.10.30 09:57:51.881
11 4.0.6.3147 2024.09.10 a4d11 P P 3415 2815 2024.10.16 04:01:59.998 2024.10.16 04:02:03.413 2024.10.16 02:46:19.496 2024.10.16 02:46:22.311
12 4.0.6.3147 2024.08.31 4655b P P 3503 2849 2024.09.10 10:59:22.419 2024.09.10 10:59:25.922 2024.09.10 09:59:12.769 2024.09.10 09:59:15.618
13 4.0.6.3140 2024.08.16 1dd8b P P 3484 2850 2024.09.01 11:22:05.839 2024.09.01 11:22:09.323 2024.09.01 10:04:00.274 2024.09.01 10:04:03.124
14 4.0.6.3140 2024.08.09 34747 P P 3532 2806 2024.08.16 11:02:25.362 2024.08.16 11:02:28.894 2024.08.16 10:02:39.336 2024.08.16 10:02:42.142
15 4.0.5.3110 2024.08.06 f851c P P 3498 2812 2024.08.09 10:41:38.255 2024.08.09 10:41:41.753 2024.08.09 09:42:27.293 2024.08.09 09:42:30.105
16 4.0.5.3110 2024.07.30 c6527 P P 3682 2699 2024.08.06 06:19:13.886 2024.08.06 06:19:17.568 2024.08.06 05:25:13.464 2024.08.06 05:25:16.163
17 4.0.5.3109 2024.06.11 6addf P P 3272 2703 2024.07.30 09:37:05.579 2024.07.30 09:37:08.851 2024.07.30 08:45:07.578 2024.07.30 08:45:10.281
18 4.0.5.3097 2024.05.09 27fa6 P P 3250 2547 2024.06.11 05:55:50.737 2024.06.11 05:55:53.987 2024.06.11 05:07:51.358 2024.06.11 05:07:53.905
19 4.0.5.3091 2024.04.29 bd0aa F F 3251 2547 2024.05.09 18:35:18.463 2024.05.09 18:35:21.714 2024.05.09 17:47:43.945 2024.05.09 17:47:46.492
20 4.0.5.3089 2024.04.20 9eb9b P P 3251 2547 2024.04.29 06:43:55.412 2024.04.29 06:43:58.663 2024.04.29 05:56:40.685 2024.04.29 05:56:43.232
21 4.0.5.3083 2024.04.06 300f9 P P 3251 2547 2024.04.20 07:07:16.268 2024.04.20 07:07:19.519 2024.04.20 06:19:38.129 2024.04.20 06:19:40.676
22 4.0.5.3052 2024.03.16 0f422 P P 3219 2500 2024.04.05 03:33:56.531 2024.04.05 03:33:59.750 2024.04.05 02:48:07.603 2024.04.05 02:48:10.103
23 4.0.5.3052 2024.03.16 ce273 P P 3108 2499 2024.03.29 14:59:49.975 2024.03.29 14:59:53.083 2024.03.29 14:16:09.902 2024.03.29 14:16:12.401
24 4.0.5.3052 2024.02.12 cd058 P P 3109 2499 2024.03.29 16:28:14.075 2024.03.29 16:28:17.184 2024.03.29 15:44:36.083 2024.03.29 15:44:38.582
25 4.0.5.3052 2024.02.07 be290 P P 3093 2500 2024.03.29 18:39:45.043 2024.03.29 18:39:48.136 2024.03.29 17:56:04.237 2024.03.29 17:56:06.737
26 4.0.5.3052 2024.02.07 6409b P P 3156 2499 2024.03.29 20:23:56.006 2024.03.29 20:23:59.162 2024.03.29 19:40:18.287 2024.03.29 19:40:20.786
27 4.0.5.3052 2024.02.02 bbc3f P P 3125 2499 2024.03.29 22:32:58.672 2024.03.29 22:33:01.797 2024.03.29 21:49:18.949 2024.03.29 21:49:21.448
28 4.0.5.3052 2024.01.26 48b7c P P 3108 2499 2024.03.30 00:00:13.300 2024.03.30 00:00:16.408 2024.03.29 23:16:29.611 2024.03.29 23:16:32.110
29 4.0.5.3052 2024.01.26 9a7b3 P P 3093 2499 2024.03.30 07:01:10.964 2024.03.30 07:01:14.057 2024.03.30 06:17:30.904 2024.03.30 06:17:33.403
30 4.0.5.3049 2024.01.25 f6b9d P P 3140 2499 2024.03.30 09:08:21.523 2024.03.30 09:08:24.663 2024.03.30 08:25:03.353 2024.03.30 08:25:05.852
31 4.0.5.3049 2024.01.08 b67ce P P 3671 2811 2024.03.30 10:54:13.748 2024.03.30 10:54:17.419 2024.03.30 10:03:00.685 2024.03.30 10:03:03.496
32 4.0.5.3049 2024.01.08 97577 P P 3608 2812 2024.03.30 15:59:14.053 2024.03.30 15:59:17.661 2024.03.30 15:08:17.553 2024.03.30 15:08:20.365
33 4.0.5.3049 2024.01.05 2d8b0 P P 3640 2812 2024.03.30 19:17:00.641 2024.03.30 19:17:04.281 2024.03.30 18:26:17.604 2024.03.30 18:26:20.416
34 4.0.5.3049 2024.01.04 431e5 P P 3093 2500 2024.03.30 20:57:17.366 2024.03.30 20:57:20.459 2024.03.30 20:14:07.655 2024.03.30 20:14:10.155
35 4.0.5.3049 2024.01.04 e33b4 P P 3124 2499 2024.03.30 23:09:10.680 2024.03.30 23:09:13.804 2024.03.30 22:25:53.812 2024.03.30 22:25:56.311
36 4.0.5.3049 2024.01.04 207ef P P 3109 2499 2024.03.31 00:52:39.737 2024.03.31 00:52:42.846 2024.03.31 00:09:20.339 2024.03.31 00:09:22.838
37 4.0.5.3034 2023.12.12 c05ff P P 3108 2500 2024.03.31 06:45:15.690 2024.03.31 06:45:18.798 2024.03.31 06:01:54.696 2024.03.31 06:01:57.196
38 4.0.5.3034 2023.12.12 3a40e P P 3140 2499 2024.03.31 15:19:59.337 2024.03.31 15:20:02.477 2024.03.31 14:36:36.603 2024.03.31 14:36:39.102
39 4.0.5.3034 2023.12.02 5934b P P 3124 2500 2024.03.31 09:53:01.263 2024.03.31 09:53:04.387 2024.03.31 09:09:39.555 2024.03.31 09:09:42.055
40 4.0.5.3034 2023.12.02 7ea5a P P 3140 2515 2024.03.31 17:44:20.677 2024.03.31 17:44:23.817 2024.03.31 17:00:57.081 2024.03.31 17:00:59.596
41 4.0.5.3034 2023.11.30 4fbc9 P P 3125 2500 2024.03.31 19:45:14.808 2024.03.31 19:45:17.933 2024.03.31 19:01:49.385 2024.03.31 19:01:51.885

Elapsed time, ms. Chart for last 41 runs:

Last commits information (all timestamps in UTC):