Show firebird.log [FOUND messages 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.DatabaseError: Error occurred during login, please check server firebird.log for details

LOG DETAILS:

2025-07-03 11:08:48.809
2025-07-03 11:08:48.809 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-03 11:08:48.809 worker_script = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11369/core_6379.sql')
2025-07-03 11:08:48.809 worker_output = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11369/core_6379.out')
2025-07-03 11:08:48.809
2025-07-03 11:08:48.809     @pytest.mark.version('>=4.0')
2025-07-03 11:08:48.809     def test_1(act: Action, worker_script: Path, worker_output: Path):
2025-07-03 11:08:48.809         worker_script.write_text(test_script)
2025-07-03 11:08:48.809         # Run init_script
2025-07-03 11:08:48.809         act.isql(switches=[], input=init_script)
2025-07-03 11:08:48.809         #
2025-07-03 11:08:48.809 >       with act.db.connect() as con_lock_1, act.db.connect() as con_lock_2:
2025-07-03 11:08:48.809
2025-07-03 11:08:48.809 tests\bugs\core_6379_test.py:95:
2025-07-03 11:08:48.809 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 11:08:48.809
2025-07-03 11:08:48.810 database = 'H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_11369\\test.fdb'
2025-07-03 11:08:48.810
2025-07-03 11:08:48.810     def connect(database: str, *, user: str=None, password: str=None, role: str=None,
2025-07-03 11:08:48.810                 no_gc: bool=None, no_db_triggers: bool=None, dbkey_scope: DBKeyScope=None,
2025-07-03 11:08:48.810                 crypt_callback: iCryptKeyCallbackImpl=None, charset: str=None,
2025-07-03 11:08:48.810                 auth_plugin_list: str=None, session_time_zone: str=None) -> Connection:
2025-07-03 11:08:48.810         """Establishes a connection to the database.
2025-07-03 11:08:48.810
2025-07-03 11:08:48.810         Arguments:
2025-07-03 11:08:48.810             database: DSN or Database configuration name.
2025-07-03 11:08:48.810             user: User name.
2025-07-03 11:08:48.810             password: User password.
2025-07-03 11:08:48.810             role: User role.
2025-07-03 11:08:48.810             no_gc: Do not perform garbage collection for this connection.
2025-07-03 11:08:48.810             no_db_triggers: Do not execute database triggers for this connection.
2025-07-03 11:08:48.810             dbkey_scope: DBKEY scope override for connection.
2025-07-03 11:08:48.810             crypt_callback: Callback that provides encryption key for the database.
2025-07-03 11:08:48.810             charset: Character set for connection.
2025-07-03 11:08:48.810             auth_plugin_list: List of authentication plugins override
2025-07-03 11:08:48.811             session_time_zone: Session time zone [Firebird 4]
2025-07-03 11:08:48.811
2025-07-03 11:08:48.811         Hooks:
2025-07-03 11:08:48.811             Event `.ConnectionHook.ATTACH_REQUEST`: Executed after all parameters
2025-07-03 11:08:48.811             are preprocessed and before `Connection` is created. Hook
2025-07-03 11:08:48.811             must have signature::
2025-07-03 11:08:48.811
2025-07-03 11:08:48.811                 hook_func(dsn: str, dpb: bytes) -> Optional[Connection]
2025-07-03 11:08:48.811
2025-07-03 11:08:48.811             Hook may return `Connection` instance or None.
2025-07-03 11:08:48.811             First instance returned by any hook will become the return value
2025-07-03 11:08:48.811             of this function and other hooks are not called.
2025-07-03 11:08:48.811
2025-07-03 11:08:48.811             Event `.ConnectionHook.ATTACHED`: Executed before `Connection` instance is
2025-07-03 11:08:48.811             returned. Hook must have signature::
2025-07-03 11:08:48.811
2025-07-03 11:08:48.811                 hook_func(connection: Connection) -> None
2025-07-03 11:08:48.811
2025-07-03 11:08:48.811             Any value returned by hook is ignored.
2025-07-03 11:08:48.811         """
2025-07-03 11:08:48.812         db_config = driver_config.get_database(database)
2025-07-03 11:08:48.812         if db_config is None:
2025-07-03 11:08:48.812             db_config = driver_config.db_defaults
2025-07-03 11:08:48.812         else:
2025-07-03 11:08:48.812             database = db_config.database.value
2025-07-03 11:08:48.812         if db_config.server.value is None:
2025-07-03 11:08:48.812             srv_config = driver_config.server_defaults
2025-07-03 11:08:48.812         else:
2025-07-03 11:08:48.812             srv_config = driver_config.get_server(db_config.server.value)
2025-07-03 11:08:48.812             if srv_config is None:
2025-07-03 11:08:48.812                 raise ValueError(f"Configuration for server '{db_config.server.value}' not found")
2025-07-03 11:08:48.812         if user is None:
2025-07-03 11:08:48.812             user = db_config.user.value
2025-07-03 11:08:48.812             if user is None:
2025-07-03 11:08:48.812                 user = srv_config.user.value
2025-07-03 11:08:48.812         if password is None:
2025-07-03 11:08:48.812             password = db_config.password.value
2025-07-03 11:08:48.812             if password is None:
2025-07-03 11:08:48.812                 password = srv_config.password.value
2025-07-03 11:08:48.812         if role is None:
2025-07-03 11:08:48.813             role = db_config.role.value
2025-07-03 11:08:48.813         if charset is None:
2025-07-03 11:08:48.813             charset = db_config.charset.value
2025-07-03 11:08:48.813         if charset:
2025-07-03 11:08:48.813             charset = charset.upper()
2025-07-03 11:08:48.813         if auth_plugin_list is None:
2025-07-03 11:08:48.813             auth_plugin_list = db_config.auth_plugin_list.value
2025-07-03 11:08:48.813         if session_time_zone is None:
2025-07-03 11:08:48.813             session_time_zone = db_config.session_time_zone.value
2025-07-03 11:08:48.813         dsn = _connect_helper(db_config.dsn.value, srv_config.host.value, srv_config.port.value,
2025-07-03 11:08:48.813                               database, db_config.protocol.value)
2025-07-03 11:08:48.813         dpb = DPB(user=user, password=password, role=role, trusted_auth=db_config.trusted_auth.value,
2025-07-03 11:08:48.813                   sql_dialect=db_config.sql_dialect.value, timeout=db_config.timeout.value,
2025-07-03 11:08:48.813                   charset=charset, cache_size=db_config.cache_size.value,
2025-07-03 11:08:48.813                   no_linger=db_config.no_linger.value, utf8filename=db_config.utf8filename.value,
2025-07-03 11:08:48.813                   no_gc=no_gc, no_db_triggers=no_db_triggers, dbkey_scope=dbkey_scope,
2025-07-03 11:08:48.813                   dummy_packet_interval=db_config.dummy_packet_interval.value,
2025-07-03 11:08:48.814                   config=db_config.config.value, auth_plugin_list=auth_plugin_list,
2025-07-03 11:08:48.814                   session_time_zone=session_time_zone, set_bind=db_config.set_bind.value,
2025-07-03 11:08:48.814                   decfloat_round=db_config.decfloat_round.value,
2025-07-03 11:08:48.814                   decfloat_traps=db_config.decfloat_traps.value,
2025-07-03 11:08:48.814                   parallel_workers=db_config.parallel_workers.value)
2025-07-03 11:08:48.814 >       return __make_connection(False, dsn, db_config.utf8filename.value, dpb.get_buffer(),
2025-07-03 11:08:48.814                                  db_config.sql_dialect.value, charset, crypt_callback)
2025-07-03 11:08:48.814
2025-07-03 11:08:48.814 C:\Python3x\Lib\site-packages\firebird\driver\core.py:2159:
2025-07-03 11:08:48.814 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 11:08:48.814
2025-07-03 11:08:48.814 create = False
2025-07-03 11:08:48.814 dsn = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_11369\\test.fdb'
2025-07-03 11:08:48.814 utf8filename = False
2025-07-03 11:08:48.814 dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00', sql_dialect = 3
2025-07-03 11:08:48.814 charset = None, crypt_callback = None
2025-07-03 11:08:48.814
2025-07-03 11:08:48.814     def __make_connection(create: bool, dsn: str, utf8filename: bool, dpb: bytes,
2025-07-03 11:08:48.814                           sql_dialect: int, charset: str,
2025-07-03 11:08:48.814                           crypt_callback: iCryptKeyCallbackImpl) -> Connection:
2025-07-03 11:08:48.815         with a.get_api().master.get_dispatcher() as provider:
2025-07-03 11:08:48.815             if crypt_callback is not None:
2025-07-03 11:08:48.815                 provider.set_dbcrypt_callback(crypt_callback)
2025-07-03 11:08:48.815             if create:
2025-07-03 11:08:48.815                 att = provider.create_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)
2025-07-03 11:08:48.815                 con = Connection(att, dsn, dpb, sql_dialect, charset)
2025-07-03 11:08:48.815             else:
2025-07-03 11:08:48.815                 con = None
2025-07-03 11:08:48.815                 for hook in get_callbacks(ConnectionHook.ATTACH_REQUEST, Connection):
2025-07-03 11:08:48.815                     try:
2025-07-03 11:08:48.815                         con = hook(dsn, dpb)
2025-07-03 11:08:48.815                     except Exception as e:
2025-07-03 11:08:48.815                         raise InterfaceError("Error in DATABASE_ATTACH_REQUEST hook.", *e.args) from e
2025-07-03 11:08:48.815                     if con is not None:
2025-07-03 11:08:48.815                         break
2025-07-03 11:08:48.815                 if con is None:
2025-07-03 11:08:48.815 >                   att = provider.attach_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)
2025-07-03 11:08:48.815
2025-07-03 11:08:48.815 C:\Python3x\Lib\site-packages\firebird\driver\core.py:2074:
2025-07-03 11:08:48.816 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 11:08:48.816
2025-07-03 11:08:48.816 self = <firebird.driver.interfaces.iProvider object at [hex]>
2025-07-03 11:08:48.816 filename = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_11369\\test.fdb'
2025-07-03 11:08:48.816 dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00'
2025-07-03 11:08:48.816 encoding = 'utf-8'
2025-07-03 11:08:48.816
2025-07-03 11:08:48.816     def attach_database(self, filename: str, dpb: Optional[bytes] = None, encoding: str = 'ascii') -> iAttachment:
2025-07-03 11:08:48.816         "Replaces `isc_attach_database()`"
2025-07-03 11:08:48.816         result = self.vtable.attachDatabase(self, self.status, filename.encode(encoding),
2025-07-03 11:08:48.816                                             0 if dpb is None else len(dpb), dpb)
2025-07-03 11:08:48.816 >       self._check()
2025-07-03 11:08:48.816
2025-07-03 11:08:48.816 C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1300:
2025-07-03 11:08:48.816 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 11:08:48.816
2025-07-03 11:08:48.816 self = <firebird.driver.interfaces.iProvider object at [hex]>
2025-07-03 11:08:48.816
2025-07-03 11:08:48.816     def _check(self) -> None:
2025-07-03 11:08:48.816         state = self.status.get_state()
2025-07-03 11:08:48.817         if StateFlag.ERRORS in state:
2025-07-03 11:08:48.817 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-07-03 11:08:48.817 E           firebird.driver.types.DatabaseError: Error occurred during login, please check server firebird.log for details
2025-07-03 11:08:48.817
2025-07-03 11:08:48.817 C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:113: DatabaseError
2025-07-03 11:08:48.817 ---------------------------- Captured stdout setup ----------------------------
2025-07-03 11:08:48.817 Creating db: localhost:H:\QA\temp\qa2024.tmp\fbqa\test_11369\test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
worker_script = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11369/core_6379.sql')
worker_output = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_11369/core_6379.out')

    @pytest.mark.version('>=4.0')
    def test_1(act: Action, worker_script: Path, worker_output: Path):
        worker_script.write_text(test_script)
        # Run init_script
        act.isql(switches=[], input=init_script)
        #
>       with act.db.connect() as con_lock_1, act.db.connect() as con_lock_2:

tests\bugs\core_6379_test.py:95: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

database = 'H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_11369\\test.fdb'

    def connect(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,
                auth_plugin_list: str=None, session_time_zone: str=None) -> Connection:
        """Establishes a connection to the 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.
            auth_plugin_list: List of authentication plugins override
            session_time_zone: Session time zone [Firebird 4]
    
        Hooks:
            Event `.ConnectionHook.ATTACH_REQUEST`: Executed after all parameters
            are preprocessed and before `Connection` is created. Hook
            must have signature::
    
                hook_func(dsn: str, dpb: bytes) -> Optional[Connection]
    
            Hook may return `Connection` instance or None.
            First instance returned by any hook will become the return value
            of this function and other hooks are not called.
    
            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
        else:
            database = db_config.database.value
        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,
                              database, db_config.protocol.value)
        dpb = DPB(user=user, password=password, role=role, trusted_auth=db_config.trusted_auth.value,
                  sql_dialect=db_config.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,
                  parallel_workers=db_config.parallel_workers.value)
>       return __make_connection(False, dsn, db_config.utf8filename.value, dpb.get_buffer(),
                                 db_config.sql_dialect.value, charset, crypt_callback)

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

create = False
dsn = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_11369\\test.fdb'
utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00', 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)
                con = Connection(att, dsn, dpb, sql_dialect, charset)
            else:
                con = None
                for hook in get_callbacks(ConnectionHook.ATTACH_REQUEST, Connection):
                    try:
                        con = hook(dsn, dpb)
                    except Exception as e:
                        raise InterfaceError("Error in DATABASE_ATTACH_REQUEST hook.", *e.args) from e
                    if con is not None:
                        break
                if con is None:
>                   att = provider.attach_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)

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

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
filename = 'localhost/33337:H:\\QA\\temp\\qa2024.tmp\\fbqa\\test_11369\\test.fdb'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00'
encoding = 'utf-8'

    def attach_database(self, filename: str, dpb: Optional[bytes] = None, encoding: str = 'ascii') -> iAttachment:
        "Replaces `isc_attach_database()`"
        result = self.vtable.attachDatabase(self, self.status, filename.encode(encoding),
                                            0 if dpb is None else len(dpb), dpb)
>       self._check()

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1300: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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: Error occurred during login, please check server firebird.log for details

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 F P 2853 2752 2025.07.03 07:41:59.849 2025.07.03 07:42:02.702 2025.07.03 06:44:10.455 2025.07.03 06:44:13.207
2 4.0.6.3214 2025.06.21 e11f6 P P 3111 2725 2025.06.25 12:29:02.056 2025.06.25 12:29:05.167 2025.06.25 11:30:00.718 2025.06.25 11:30:03.443
3 4.0.6.3213 2025.06.14 f015c P P 3138 2763 2025.06.21 07:29:27.191 2025.06.21 07:29:30.329 2025.06.21 06:30:35.011 2025.06.21 06:30:37.774
4 4.0.6.3212 2025.06.11 bc50d P P 3084 2768 2025.06.14 07:57:18.075 2025.06.14 07:57:21.159 2025.06.14 06:57:54.702 2025.06.14 06:57:57.470
5 4.0.6.3208 2025.06.10 19fe3 P P 3137 2758 2025.06.11 06:24:23.737 2025.06.11 06:24:26.874 2025.06.11 05:25:22.035 2025.06.11 05:25:24.793
6 4.0.6.3207 2025.06.07 205ff P P 3109 2757 2025.06.10 06:25:30.207 2025.06.10 06:25:33.316 2025.06.10 05:26:15.241 2025.06.10 05:26:17.998
7 4.0.6.3206 2025.05.22 d7d10 P P 3076 2735 2025.06.06 06:19:36.510 2025.06.06 06:19:39.586 2025.06.06 05:21:34.365 2025.06.06 05:21:37.100
8 4.0.6.3205 2025.05.07 00148 P P 3031 2724 2025.05.18 06:07:15.918 2025.05.18 06:07:18.949 2025.05.18 05:11:19.595 2025.05.18 05:11:22.319
9 4.0.6.3204 2025.05.06 35b85 P P 3062 2731 2025.05.07 06:15:21.633 2025.05.07 06:15:24.695 2025.05.07 05:17:53.561 2025.05.07 05:17:56.292
10 4.0.6.3203 2025.05.05 c2cbd P P 3122 2771 2025.05.06 06:15:34.536 2025.05.06 06:15:37.658 2025.05.06 05:18:01.994 2025.05.06 05:18:04.765
11 4.0.6.3200 2025.04.18 7ef56 P P 3066 2729 2025.04.26 06:20:09.154 2025.04.26 06:20:12.220 2025.04.26 05:22:11.025 2025.04.26 05:22:13.754
12 4.0.6.3199 2025.04.14 33a10 P P 3092 3254 2025.04.17 06:17:35.867 2025.04.17 06:17:38.959 2025.04.17 05:19:18.007 2025.04.17 05:19:21.261
13 4.0.6.3198 2025.04.13 64a7f P P 3077 2756 2025.04.14 06:15:51.358 2025.04.14 06:15:54.435 2025.04.14 05:17:47.151 2025.04.14 05:17:49.907
14 4.0.6.3195 2025.04.12 82cb5 P P 3008 2720 2025.04.13 06:01:29.109 2025.04.13 06:01:32.117 2025.04.13 05:05:46.684 2025.04.13 05:05:49.404
15 4.0.6.3195 2025.03.28 b9faf P P 3068 2738 2025.04.12 06:20:30.861 2025.04.12 06:20:33.929 2025.04.12 05:22:03.335 2025.04.12 05:22:06.073
16 4.0.6.3194 2025.03.27 ab754 P P 3106 2762 2025.03.28 06:33:00.765 2025.03.28 06:33:03.871 2025.03.28 05:33:48.862 2025.03.28 05:33:51.624
17 4.0.6.3194 2025.03.26 912aa P P 3134 2780 2025.03.27 06:22:57.128 2025.03.27 06:23:00.262 2025.03.27 05:22:29.679 2025.03.27 05:22:32.459
18 4.0.6.3193 2025.03.20 80234 P P 3123 2798 2025.03.24 06:23:25.510 2025.03.24 06:23:28.633 2025.03.24 05:22:38.227 2025.03.24 05:22:41.025
19 4.0.6.3192 2025.03.13 2a9da P P 3082 2746 2025.03.20 06:11:24.654 2025.03.20 06:11:27.736 2025.03.20 05:12:38.228 2025.03.20 05:12:40.974
20 4.0.6.3191 2025.03.10 3d9fd P P 3202 3158 2025.03.13 06:18:36.025 2025.03.13 06:18:39.227 2025.03.13 05:18:16.618 2025.03.13 05:18:19.776
21 4.0.6.3190 2025.02.25 c9928 P P 3096 2751 2025.03.09 06:15:17.940 2025.03.09 06:15:21.036 2025.03.09 05:15:15.702 2025.03.09 05:15:18.453
22 4.0.6.3189 2025.02.22 3fb0b P P 3108 2777 2025.02.25 06:04:40.233 2025.02.25 06:04:43.341 2025.02.25 05:06:02.664 2025.02.25 05:06:05.441
23 4.0.6.3188 2025.02.21 8ee1c P P 3083 2789 2025.02.22 05:58:22.643 2025.02.22 05:58:25.726 2025.02.22 05:00:20.302 2025.02.22 05:00:23.091
24 4.0.6.3186 2025.02.19 92cb6 P P 3157 2777 2025.02.20 03:55:58.306 2025.02.20 03:56:01.463 2025.02.20 02:57:06.617 2025.02.20 02:57:09.394
25 4.0.6.3185 2025.02.16 9cac4 P P 3158 2777 2025.02.17 01:43:28.878 2025.02.17 01:43:32.036 2025.02.17 00:45:29.615 2025.02.17 00:45:32.392
26 4.0.6.3183 2025.02.04 bf738 P P 3133 2787 2025.02.08 06:02:09.436 2025.02.08 06:02:12.569 2025.02.08 05:03:36.127 2025.02.08 05:03:38.914
27 4.0.6.3181 2025.02.01 00b64 P P 3137 2785 2025.02.04 06:15:33.647 2025.02.04 06:15:36.784 2025.02.04 05:17:06.227 2025.02.04 05:17:09.012
28 4.0.6.3180 2025.01.27 2edb8 P P 3092 2792 2025.01.28 05:58:56.427 2025.01.28 05:58:59.519 2025.01.28 05:01:01.593 2025.01.28 05:01:04.385
29 4.0.6.3179 2025.01.24 008d4 P P 3090 2765 2025.01.25 03:49:07.926 2025.01.25 03:49:11.016 2025.01.25 02:51:19.219 2025.01.25 02:51:21.984
30 4.0.6.3178 2025.01.20 ec94d P P 3122 2767 2025.01.24 05:59:35.487 2025.01.24 05:59:38.609 2025.01.24 05:01:36.387 2025.01.24 05:01:39.154
31 4.0.6.3176 2025.01.16 79cc1 P P 3142 2756 2025.01.20 05:58:20.226 2025.01.20 05:58:23.368 2025.01.20 05:00:25.831 2025.01.20 05:00:28.587
32 4.0.6.3175 2025.01.15 91361 P P 3202 2768 2025.01.16 06:01:59.353 2025.01.16 06:02:02.555 2025.01.16 05:03:52.872 2025.01.16 05:03:55.640
33 4.0.6.3174 2024.12.23 ffd39 P P 3165 2777 2025.01.15 05:55:38.421 2025.01.15 05:55:41.586 2025.01.15 04:57:23.685 2025.01.15 04:57:26.462
34 4.0.6.3173 2024.12.19 60b32 P P 3098 2812 2024.12.21 16:55:17.425 2024.12.21 16:55:20.523 2024.12.21 15:56:54.084 2024.12.21 15:56:56.896
35 4.0.6.3172 2024.12.11 33f5d P P 3110 2809 2024.12.16 05:57:41.831 2024.12.16 05:57:44.941 2024.12.16 04:59:30.413 2024.12.16 04:59:33.222
36 4.0.6.3171 2024.12.10 ab1d4 P P 3109 2778 2024.12.11 06:00:02.303 2024.12.11 06:00:05.412 2024.12.11 05:02:01.844 2024.12.11 05:02:04.622
37 4.0.6.3170 2024.12.02 68abd P P 3136 2788 2024.12.04 05:50:35.753 2024.12.04 05:50:38.889 2024.12.04 04:53:43.536 2024.12.04 04:53:46.324
38 4.0.6.3169 2024.11.28 1673f P P 3135 2772 2024.11.30 05:48:36.334 2024.11.30 05:48:39.469 2024.11.30 04:51:50.829 2024.11.30 04:51:53.601
39 4.0.6.3168 2024.11.27 7fffc P P 3131 2814 2024.11.28 05:44:34.606 2024.11.28 05:44:37.737 2024.11.28 04:48:28.409 2024.11.28 04:48:31.223
40 4.0.6.3168 2024.11.07 f67e2 P P 3125 2765 2024.11.27 05:47:00.948 2024.11.27 05:47:04.073 2024.11.27 04:50:12.638 2024.11.27 04:50:15.403
41 4.0.6.3167 2024.11.04 c9228 P P 3092 2779 2024.11.05 05:39:58.709 2024.11.05 05:40:01.801 2024.11.05 04:44:12.056 2024.11.05 04:44:14.835
42 4.0.6.3165 2024.10.23 b0c36 P P 3101 2766 2024.11.04 11:29:45.085 2024.11.04 11:29:48.186 2024.11.04 10:33:54.002 2024.11.04 10:33:56.768
43 4.0.6.3164 2024.10.17 35344 P P 3133 2784 2024.10.23 05:49:02.101 2024.10.23 05:49:05.234 2024.10.23 04:52:25.892 2024.10.23 04:52:28.676
44 4.0.6.3161 2024.10.05 91502 P P 3102 2768 2024.10.15 05:46:22.491 2024.10.15 05:46:25.593 2024.10.15 04:50:14.418 2024.10.15 04:50:17.186
45 4.0.6.3159 2024.10.01 85136 P P 3096 2765 2024.10.05 05:50:16.402 2024.10.05 05:50:19.498 2024.10.05 04:53:01.169 2024.10.05 04:53:03.934
46 4.0.6.3158 2024.09.30 14c68 P P 3273 2810 2024.10.01 05:48:13.056 2024.10.01 05:48:16.329 2024.10.01 04:51:17.969 2024.10.01 04:51:20.779
47 4.0.6.3157 2024.09.24 3bb2e P P 3131 2745 2024.09.30 05:47:48.189 2024.09.30 05:47:51.320 2024.09.30 04:51:17.626 2024.09.30 04:51:20.371
48 4.0.6.3156 2024.09.21 f6416 P P 3139 2763 2024.09.24 05:47:26.564 2024.09.24 05:47:29.703 2024.09.24 04:50:44.704 2024.09.24 04:50:47.467
49 4.0.6.3155 2024.09.20 1ed0c P P 3098 2775 2024.09.21 05:48:57.494 2024.09.21 05:49:00.592 2024.09.21 04:51:58.508 2024.09.21 04:52:01.283
50 4.0.6.3151 2024.09.09 1b77f P P 3130 2774 2024.09.17 05:46:14.064 2024.09.17 05:46:17.194 2024.09.17 04:50:17.289 2024.09.17 04:50:20.063
51 4.0.6.3149 2024.09.04 32ce9 P P 3101 2789 2024.09.08 03:47:02.672 2024.09.08 03:47:05.773 2024.09.08 02:50:19.407 2024.09.08 02:50:22.196
52 4.0.6.3148 2024.09.02 4be5c P P 3130 2797 2024.09.04 05:49:46.189 2024.09.04 05:49:49.319 2024.09.04 04:52:32.757 2024.09.04 04:52:35.554
53 4.0.6.3147 2024.08.30 5ffd7 P P 3104 2759 2024.09.02 05:39:15.438 2024.09.02 05:39:18.542 2024.09.02 04:42:25.504 2024.09.02 04:42:28.263
54 4.0.6.3146 2024.08.27 38582 P P 3139 2767 2024.08.30 05:34:08.319 2024.08.30 05:34:11.458 2024.08.30 04:37:23.066 2024.08.30 04:37:25.833
55 4.0.6.3145 2024.08.21 87240 P P 3131 2768 2024.08.27 05:29:14.832 2024.08.27 05:29:17.963 2024.08.27 04:32:33.348 2024.08.27 04:32:36.116
56 4.0.6.3144 2024.08.20 5a3b7 P P 3111 2775 2024.08.21 05:26:49.430 2024.08.21 05:26:52.541 2024.08.21 04:30:19.110 2024.08.21 04:30:21.885
57 4.0.6.3142 2024.08.11 b9f39 P P 3251 2854 2024.08.19 05:36:17.485 2024.08.19 05:36:20.736 2024.08.19 04:38:09.664 2024.08.19 04:38:12.518
58 4.0.6.3141 2024.08.09 6d39f P P 3254 2832 2024.08.11 03:30:46.257 2024.08.11 03:30:49.511 2024.08.11 02:32:19.825 2024.08.11 02:32:22.657
59 4.0.5.3140 2024.08.06 64f3a P P 3290 2817 2024.08.10 21:15:49.117 2024.08.10 21:15:52.407 2024.08.10 20:15:47.487 2024.08.10 20:15:50.304
60 4.0.5.3139 2024.08.01 3bc8b P P 3099 2710 2024.08.06 03:23:59.107 2024.08.06 03:24:02.206 2024.08.06 02:30:01.286 2024.08.06 02:30:03.996
61 4.0.5.3136 2024.07.31 e41ec P P 3085 2692 2024.08.01 11:56:07.688 2024.08.01 11:56:10.773 2024.08.01 11:04:03.795 2024.08.01 11:04:06.487
62 4.0.5.3135 2024.07.26 b4981 P P 3077 2760 2024.07.30 05:05:15.610 2024.07.30 05:05:18.687 2024.07.30 04:13:18.019 2024.07.30 04:13:20.779
63 4.0.5.3129 2024.07.24 b8184 P P 3014 2708 2024.07.25 05:04:53.350 2024.07.25 05:04:56.364 2024.07.25 04:12:54.486 2024.07.25 04:12:57.194
64 4.0.5.3128 2024.07.13 aa318 P P 3029 2674 2024.07.24 05:31:52.872 2024.07.24 05:31:55.901 2024.07.24 04:39:43.038 2024.07.24 04:39:45.712
65 4.0.5.3127 2024.07.10 eace3 P P 2958 2656 2024.07.13 05:00:27.608 2024.07.13 05:00:30.566 2024.07.13 04:08:45.234 2024.07.13 04:08:47.890
66 4.0.5.3123 2024.07.09 070ee P P 3064 2687 2024.07.10 05:14:26.511 2024.07.10 05:14:29.575 2024.07.10 04:20:57.760 2024.07.10 04:21:00.447
67 4.0.5.3123 2024.06.24 c27c6 P P 3018 2708 2024.07.09 05:13:50.112 2024.07.09 05:13:53.130 2024.07.09 04:19:32.904 2024.07.09 04:19:35.612
68 4.0.5.3112 2024.06.13 d2e61 P P 3001 2701 2024.06.21 21:50:33.988 2024.06.21 21:50:36.989 2024.06.21 20:53:28.875 2024.06.21 20:53:31.576
69 4.0.5.3109 2024.06.12 de9c0 P P 2906 2547 2024.06.13 02:43:53.903 2024.06.13 02:43:56.809 2024.06.13 01:56:03.118 2024.06.13 01:56:05.665
70 4.0.5.3109 2024.06.09 569cf P P 2953 2532 2024.06.11 02:44:10.255 2024.06.11 02:44:13.208 2024.06.11 01:56:17.507 2024.06.11 01:56:20.039
71 4.0.5.3103 2024.05.24 61480 P P 2891 2547 2024.05.25 02:41:26.530 2024.05.25 02:41:29.421 2024.05.25 01:53:43.896 2024.05.25 01:53:46.443
72 4.0.5.3100 2024.05.15 2dc0d P P 2922 2531 2024.05.24 02:43:38.264 2024.05.24 02:43:41.186 2024.05.24 01:55:12.811 2024.05.24 01:55:15.342
73 4.0.5.3098 2024.05.09 4c3ec P P 2923 2547 2024.05.15 02:40:04.688 2024.05.15 02:40:07.611 2024.05.15 01:52:34.164 2024.05.15 01:52:36.711
74 4.0.5.3097 2024.05.08 ec699 P P 2906 2532 2024.05.09 14:27:52.815 2024.05.09 14:27:55.721 2024.05.09 13:40:27.762 2024.05.09 13:40:30.294
75 4.0.5.3092 2024.05.06 bbc47 P P 2907 2532 2024.05.08 02:40:44.950 2024.05.08 02:40:47.857 2024.05.08 01:53:12.492 2024.05.08 01:53:15.024
76 4.0.5.3091 2024.04.29 062a7 P P 2922 2531 2024.04.30 02:38:35.743 2024.04.30 02:38:38.665 2024.04.30 01:51:28.674 2024.04.30 01:51:31.205
77 4.0.5.3089 2024.04.19 08c92 P P 2907 2532 2024.04.29 02:38:53.249 2024.04.29 02:38:56.156 2024.04.29 01:51:29.545 2024.04.29 01:51:32.077
78 4.0.5.3088 2024.04.17 c4484 P P 2907 2531 2024.04.19 02:38:53.333 2024.04.19 02:38:56.240 2024.04.19 01:51:19.242 2024.04.19 01:51:21.773
79 4.0.5.3086 2024.04.16 434ab P P 2907 2532 2024.04.17 02:36:13.342 2024.04.17 02:36:16.249 2024.04.17 01:49:12.240 2024.04.17 01:49:14.772
80 4.0.5.3083 2024.03.31 6ee48 P P 2907 2531 2024.04.13 02:31:37.172 2024.04.13 02:31:40.079 2024.04.13 01:44:52.575 2024.04.13 01:44:55.106
81 4.0.5.3082 2024.03.31 c768b P P 2860 2532 2024.04.04 14:09:13.060 2024.04.04 14:09:15.920 2024.04.04 13:25:06.517 2024.04.04 13:25:09.049
82 4.0.5.3082 2024.03.25 af9dc P P 2874 2514 2024.03.29 01:49:02.432 2024.03.29 01:49:05.306 2024.03.29 01:03:25.233 2024.03.29 01:03:27.747
83 4.0.5.3081 2024.03.22 17cd2 P P 2874 2515 2024.03.24 03:22:30.993 2024.03.24 03:22:33.867 2024.03.24 02:35:53.300 2024.03.24 02:35:55.815
84 4.0.5.3080 2024.03.22 5d44e P P 2843 2515 2024.03.22 16:08:11.905 2024.03.22 16:08:14.748 2024.03.22 15:23:40.181 2024.03.22 15:23:42.696
85 4.0.5.3080 2024.03.17 17edd P P 2827 2515 2024.03.20 19:35:22.384 2024.03.20 19:35:25.211 2024.03.20 18:50:53.402 2024.03.20 18:50:55.917

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):