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 ?

firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
-Failed to establish a connection.

LOG DETAILS:

2025-05-13 08:53:14.166
2025-05-13 08:53:14.166 act_db_main = <firebird.qa.plugin.Action object at [hex]>
2025-05-13 08:53:14.166 act_db_repl = <firebird.qa.plugin.Action object at [hex]>
2025-05-13 08:53:14.166 tmp_oltp_build_sql = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_12246/tmp_oltp_emul_ddl.sql')
2025-05-13 08:53:14.166 tmp_oltp_build_log = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_12246/tmp_oltp_emul_ddl.log')
2025-05-13 08:53:14.166 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-05-13 08:53:14.166
2025-05-13 08:53:14.166     @pytest.mark.replication
2025-05-13 08:53:14.166     @pytest.mark.version('>=4.0.1')
2025-05-13 08:53:14.166     def test_1(act_db_main: Action,  act_db_repl: Action, tmp_oltp_build_sql: Path, tmp_oltp_build_log: Path, capsys):
2025-05-13 08:53:14.166
2025-05-13 08:53:14.166         if act_db_main.is_version('>=6.0'):
2025-05-13 08:53:14.166             pytest.skip('Since #8473 empty columns not allowed')
2025-05-13 08:53:14.166
2025-05-13 08:53:14.166         tmp_oltp_sql_files = []
2025-05-13 08:53:14.167
2025-05-13 08:53:14.167         out_prep, out_init, out_main, out_drop = '', '', '', ''
2025-05-13 08:53:14.167         # Obtain full path + filename for DB_MAIN and DB_REPL aliases.
2025-05-13 08:53:14.167         # NOTE: we must NOT use 'a.db.db_path' for ALIASED databases!
2025-05-13 08:53:14.167         # It will return '.' rather than full path+filename.
2025-05-13 08:53:14.167         # Use only con.info.name for that!
2025-05-13 08:53:14.167         #
2025-05-13 08:53:14.167         db_info = {}
2025-05-13 08:53:14.167         for a in (act_db_main, act_db_repl):
2025-05-13 08:53:14.167 >           with a.db.connect(no_db_triggers = True) as con:
2025-05-13 08:53:14.167
2025-05-13 08:53:14.167 tests\functional\replication\test_oltp_emul_ddl.py:460:
2025-05-13 08:53:14.167 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-05-13 08:53:14.167
2025-05-13 08:53:14.167 database = 'db_main_alias'
2025-05-13 08:53:14.167
2025-05-13 08:53:14.167     def connect(database: str, *, user: str=None, password: str=None, role: str=None,
2025-05-13 08:53:14.167                 no_gc: bool=None, no_db_triggers: bool=None, dbkey_scope: DBKeyScope=None,
2025-05-13 08:53:14.167                 crypt_callback: iCryptKeyCallbackImpl=None, charset: str=None,
2025-05-13 08:53:14.167                 auth_plugin_list: str=None, session_time_zone: str=None) -> Connection:
2025-05-13 08:53:14.167         """Establishes a connection to the database.
2025-05-13 08:53:14.168
2025-05-13 08:53:14.168         Arguments:
2025-05-13 08:53:14.168             database: DSN or Database configuration name.
2025-05-13 08:53:14.168             user: User name.
2025-05-13 08:53:14.168             password: User password.
2025-05-13 08:53:14.168             role: User role.
2025-05-13 08:53:14.168             no_gc: Do not perform garbage collection for this connection.
2025-05-13 08:53:14.168             no_db_triggers: Do not execute database triggers for this connection.
2025-05-13 08:53:14.168             dbkey_scope: DBKEY scope override for connection.
2025-05-13 08:53:14.168             crypt_callback: Callback that provides encryption key for the database.
2025-05-13 08:53:14.168             charset: Character set for connection.
2025-05-13 08:53:14.168             auth_plugin_list: List of authentication plugins override
2025-05-13 08:53:14.168             session_time_zone: Session time zone [Firebird 4]
2025-05-13 08:53:14.168
2025-05-13 08:53:14.168         Hooks:
2025-05-13 08:53:14.168             Event `.ConnectionHook.ATTACH_REQUEST`: Executed after all parameters
2025-05-13 08:53:14.168             are preprocessed and before `Connection` is created. Hook
2025-05-13 08:53:14.168             must have signature::
2025-05-13 08:53:14.168
2025-05-13 08:53:14.168                 hook_func(dsn: str, dpb: bytes) -> Optional[Connection]
2025-05-13 08:53:14.168
2025-05-13 08:53:14.169             Hook may return `Connection` instance or None.
2025-05-13 08:53:14.169             First instance returned by any hook will become the return value
2025-05-13 08:53:14.169             of this function and other hooks are not called.
2025-05-13 08:53:14.169
2025-05-13 08:53:14.169             Event `.ConnectionHook.ATTACHED`: Executed before `Connection` instance is
2025-05-13 08:53:14.169             returned. Hook must have signature::
2025-05-13 08:53:14.169
2025-05-13 08:53:14.169                 hook_func(connection: Connection) -> None
2025-05-13 08:53:14.169
2025-05-13 08:53:14.169             Any value returned by hook is ignored.
2025-05-13 08:53:14.169         """
2025-05-13 08:53:14.169         db_config = driver_config.get_database(database)
2025-05-13 08:53:14.169         if db_config is None:
2025-05-13 08:53:14.169             db_config = driver_config.db_defaults
2025-05-13 08:53:14.169         else:
2025-05-13 08:53:14.169             database = db_config.database.value
2025-05-13 08:53:14.169         if db_config.server.value is None:
2025-05-13 08:53:14.169             srv_config = driver_config.server_defaults
2025-05-13 08:53:14.169         else:
2025-05-13 08:53:14.169             srv_config = driver_config.get_server(db_config.server.value)
2025-05-13 08:53:14.169             if srv_config is None:
2025-05-13 08:53:14.170                 raise ValueError(f"Configuration for server '{db_config.server.value}' not found")
2025-05-13 08:53:14.170         if user is None:
2025-05-13 08:53:14.170             user = db_config.user.value
2025-05-13 08:53:14.170             if user is None:
2025-05-13 08:53:14.170                 user = srv_config.user.value
2025-05-13 08:53:14.170         if password is None:
2025-05-13 08:53:14.170             password = db_config.password.value
2025-05-13 08:53:14.170             if password is None:
2025-05-13 08:53:14.170                 password = srv_config.password.value
2025-05-13 08:53:14.170         if role is None:
2025-05-13 08:53:14.170             role = db_config.role.value
2025-05-13 08:53:14.170         if charset is None:
2025-05-13 08:53:14.170             charset = db_config.charset.value
2025-05-13 08:53:14.170         if charset:
2025-05-13 08:53:14.170             charset = charset.upper()
2025-05-13 08:53:14.170         if auth_plugin_list is None:
2025-05-13 08:53:14.170             auth_plugin_list = db_config.auth_plugin_list.value
2025-05-13 08:53:14.170         if session_time_zone is None:
2025-05-13 08:53:14.170             session_time_zone = db_config.session_time_zone.value
2025-05-13 08:53:14.170         dsn = _connect_helper(db_config.dsn.value, srv_config.host.value, srv_config.port.value,
2025-05-13 08:53:14.171                               database, db_config.protocol.value)
2025-05-13 08:53:14.171         dpb = DPB(user=user, password=password, role=role, trusted_auth=db_config.trusted_auth.value,
2025-05-13 08:53:14.171                   sql_dialect=db_config.sql_dialect.value, timeout=db_config.timeout.value,
2025-05-13 08:53:14.171                   charset=charset, cache_size=db_config.cache_size.value,
2025-05-13 08:53:14.171                   no_linger=db_config.no_linger.value, utf8filename=db_config.utf8filename.value,
2025-05-13 08:53:14.171                   no_gc=no_gc, no_db_triggers=no_db_triggers, dbkey_scope=dbkey_scope,
2025-05-13 08:53:14.171                   dummy_packet_interval=db_config.dummy_packet_interval.value,
2025-05-13 08:53:14.171                   config=db_config.config.value, auth_plugin_list=auth_plugin_list,
2025-05-13 08:53:14.171                   session_time_zone=session_time_zone, set_bind=db_config.set_bind.value,
2025-05-13 08:53:14.171                   decfloat_round=db_config.decfloat_round.value,
2025-05-13 08:53:14.171                   decfloat_traps=db_config.decfloat_traps.value,
2025-05-13 08:53:14.171                   parallel_workers=db_config.parallel_workers.value)
2025-05-13 08:53:14.171 >       return __make_connection(False, dsn, db_config.utf8filename.value, dpb.get_buffer(),
2025-05-13 08:53:14.171                                  db_config.sql_dialect.value, charset, crypt_callback)
2025-05-13 08:53:14.171
2025-05-13 08:53:14.171 C:\Python3x\Lib\site-packages\firebird\driver\core.py:2159:
2025-05-13 08:53:14.171 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-05-13 08:53:14.171
2025-05-13 08:53:14.171 create = False, dsn = 'localhost/33337:db_main_alias', utf8filename = False
2025-05-13 08:53:14.171 dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00H\x04\x01\x00\x00\x00'
2025-05-13 08:53:14.172 sql_dialect = 3, charset = None, crypt_callback = None
2025-05-13 08:53:14.172
2025-05-13 08:53:14.172     def __make_connection(create: bool, dsn: str, utf8filename: bool, dpb: bytes,
2025-05-13 08:53:14.172                           sql_dialect: int, charset: str,
2025-05-13 08:53:14.172                           crypt_callback: iCryptKeyCallbackImpl) -> Connection:
2025-05-13 08:53:14.172         with a.get_api().master.get_dispatcher() as provider:
2025-05-13 08:53:14.172             if crypt_callback is not None:
2025-05-13 08:53:14.172                 provider.set_dbcrypt_callback(crypt_callback)
2025-05-13 08:53:14.172             if create:
2025-05-13 08:53:14.172                 att = provider.create_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)
2025-05-13 08:53:14.172                 con = Connection(att, dsn, dpb, sql_dialect, charset)
2025-05-13 08:53:14.172             else:
2025-05-13 08:53:14.172                 con = None
2025-05-13 08:53:14.172                 for hook in get_callbacks(ConnectionHook.ATTACH_REQUEST, Connection):
2025-05-13 08:53:14.172                     try:
2025-05-13 08:53:14.172                         con = hook(dsn, dpb)
2025-05-13 08:53:14.172                     except Exception as e:
2025-05-13 08:53:14.172                         raise InterfaceError("Error in DATABASE_ATTACH_REQUEST hook.", *e.args) from e
2025-05-13 08:53:14.172                     if con is not None:
2025-05-13 08:53:14.172                         break
2025-05-13 08:53:14.172                 if con is None:
2025-05-13 08:53:14.173 >                   att = provider.attach_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)
2025-05-13 08:53:14.173
2025-05-13 08:53:14.173 C:\Python3x\Lib\site-packages\firebird\driver\core.py:2074:
2025-05-13 08:53:14.173 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-05-13 08:53:14.173
2025-05-13 08:53:14.173 self = <firebird.driver.interfaces.iProvider object at [hex]>
2025-05-13 08:53:14.173 filename = 'localhost/33337:db_main_alias'
2025-05-13 08:53:14.173 dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00H\x04\x01\x00\x00\x00'
2025-05-13 08:53:14.173 encoding = 'utf-8'
2025-05-13 08:53:14.173
2025-05-13 08:53:14.173     def attach_database(self, filename: str, dpb: Optional[bytes] = None, encoding: str = 'ascii') -> iAttachment:
2025-05-13 08:53:14.173         "Replaces `isc_attach_database()`"
2025-05-13 08:53:14.173         result = self.vtable.attachDatabase(self, self.status, filename.encode(encoding),
2025-05-13 08:53:14.173                                             0 if dpb is None else len(dpb), dpb)
2025-05-13 08:53:14.173 >       self._check()
2025-05-13 08:53:14.173
2025-05-13 08:53:14.173 C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1300:
2025-05-13 08:53:14.173 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-05-13 08:53:14.173
2025-05-13 08:53:14.173 self = <firebird.driver.interfaces.iProvider object at [hex]>
2025-05-13 08:53:14.174
2025-05-13 08:53:14.174     def _check(self) -> None:
2025-05-13 08:53:14.174         state = self.status.get_state()
2025-05-13 08:53:14.174         if StateFlag.ERRORS in state:
2025-05-13 08:53:14.174 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-05-13 08:53:14.174 E           firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
2025-05-13 08:53:14.174 E           -Failed to establish a connection.
2025-05-13 08:53:14.174
2025-05-13 08:53:14.174 C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:113: DatabaseError
3 #text
act_db_main = <firebird.qa.plugin.Action pytest object at [hex]>
act_db_repl = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_oltp_build_sql = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_12246/tmp_oltp_emul_ddl.sql')
tmp_oltp_build_log = WindowsPath('H:/QA/temp/qa2024.tmp/fbqa/test_12246/tmp_oltp_emul_ddl.log')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.replication
    @pytest.mark.version('>=4.0.1')
    def test_1(act_db_main: Action,  act_db_repl: Action, tmp_oltp_build_sql: Path, tmp_oltp_build_log: Path, capsys):
    
        if act_db_main.is_version('>=6.0'):
            pytest.skip('Since #8473 empty columns not allowed')
    
        tmp_oltp_sql_files = []
    
        out_prep, out_init, out_main, out_drop = '', '', '', ''
        # Obtain full path + filename for DB_MAIN and DB_REPL aliases.
        # NOTE: we must NOT use 'a.db.db_path' for ALIASED databases!
        # It will return '.' rather than full path+filename.
        # Use only con.info.name for that!
        #
        db_info = {}
        for a in (act_db_main, act_db_repl):
>           with a.db.connect(no_db_triggers = True) as con:

tests\functional\replication\test_oltp_emul_ddl.py:460: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

database = 'db_main_alias'

    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:db_main_alias', utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00H\x04\x01\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:db_main_alias'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00H\x04\x01\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: 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 5.0.3.1674 2025.06.27 3ee5c P P 16696 15828 2025.06.29 11:17:28.656 2025.06.29 11:17:45.352 2025.06.29 10:13:42.928 2025.06.29 10:13:58.756
2 5.0.3.1657 2025.06.26 dcb8a P P 16709 13727 2025.06.27 11:18:02.309 2025.06.27 11:18:19.018 2025.06.27 10:14:28.804 2025.06.27 10:14:42.531
3 5.0.3.1657 2025.06.20 8b4d2 P P 19186 12801 2025.06.26 11:32:28.327 2025.06.26 11:32:47.513 2025.06.26 10:28:41.770 2025.06.26 10:28:54.571
4 5.0.3.1657 2025.06.19 4bd4c P P 16438 13909 2025.06.20 05:36:37.938 2025.06.20 05:36:54.376 2025.06.20 04:32:53.917 2025.06.20 04:33:07.826
5 5.0.3.1657 2025.06.11 dae6f P P 16269 14077 2025.06.19 11:08:11.461 2025.06.19 11:08:27.730 2025.06.19 10:04:20.024 2025.06.19 10:04:34.101
6 5.0.3.1657 2025.06.10 dbc92 P P 16523 14371 2025.06.11 08:54:21.227 2025.06.11 08:54:37.750 2025.06.11 07:50:22.038 2025.06.11 07:50:36.409
7 5.0.3.1656 2025.06.05 00512 P P 17605 17243 2025.06.10 10:09:42.150 2025.06.10 10:09:59.755 2025.06.10 09:05:21.401 2025.06.10 09:05:38.644
8 5.0.3.1656 2025.05.20 c4b11 P P 17063 14170 2025.06.03 09:56:23.047 2025.06.03 09:56:40.110 2025.06.03 08:53:19.971 2025.06.03 08:53:34.141
9 5.0.3.1652 2025.05.13 f51c6 P P 17139 13756 2025.05.21 06:37:23.063 2025.05.21 06:37:40.202 2025.05.21 05:34:38.962 2025.05.21 05:34:52.718
10 5.0.3.1651 2025.05.08 ee9d2 P F 17760 2206 2025.05.13 06:50:02.240 2025.05.13 06:50:20.000 2025.05.13 05:44:09.399 2025.05.13 05:44:11.605
11 5.0.3.1651 2025.05.04 3d914 P F 16176 2225 2025.05.09 04:39:06.986 2025.05.09 04:39:23.162 2025.05.09 03:33:07.420 2025.05.09 03:33:09.645
12 5.0.3.1651 2025.04.30 141ef P F 16222 2207 2025.05.02 04:46:38.355 2025.05.02 04:46:54.577 2025.05.02 03:41:00.330 2025.05.02 03:41:02.537
13 5.0.3.1650 2025.04.30 6253f P F 19964 2194 2025.05.01 04:45:43.936 2025.05.01 04:46:03.900 2025.05.01 03:39:56.730 2025.05.01 03:39:58.924
14 5.0.3.1650 2025.04.28 4cbff P F 17482 2384 2025.04.30 04:44:42.947 2025.04.30 04:45:00.429 2025.04.30 03:39:09.823 2025.04.30 03:39:12.207
15 5.0.3.1649 2025.04.21 5b2d0 P F 17789 2199 2025.04.26 10:18:48.781 2025.04.26 10:19:06.570 2025.04.26 09:12:12.130 2025.04.26 09:12:14.329
16 5.0.3.1648 2025.04.18 2f4c5 P P 16446 14111 2025.04.20 04:30:02.463 2025.04.20 04:30:18.909 2025.04.20 03:26:15.886 2025.04.20 03:26:29.997
17 5.0.3.1635 2025.04.03 f6bd1 P F 16473 2400 2025.04.18 06:57:45.943 2025.04.18 06:58:02.416 2025.04.18 05:51:21.503 2025.04.18 05:51:23.903
18 5.0.3.1635 2025.03.31 22ec6 P F 18354 2395 2025.04.03 10:03:30.460 2025.04.03 10:03:48.814 2025.04.03 08:56:45.655 2025.04.03 08:56:48.050
19 5.0.3.1633 2025.03.28 3123a P F 16878 2205 2025.03.31 10:01:56.437 2025.03.31 10:02:13.315 2025.03.31 08:55:14.944 2025.03.31 08:55:17.149
20 5.0.3.1633 2025.03.27 e0fb8 P F 17917 2389 2025.03.28 10:33:56.540 2025.03.28 10:34:14.457 2025.03.28 09:23:15.069 2025.03.28 09:23:17.458
21 5.0.3.1631 2025.03.25 bda65 P P 16311 14570 2025.03.27 10:14:28.154 2025.03.27 10:14:44.465 2025.03.27 09:06:49.717 2025.03.27 09:07:04.287
22 5.0.3.1631 2025.03.21 1925b P P 16639 16587 2025.03.25 06:48:35.063 2025.03.25 06:48:51.702 2025.03.25 05:40:51.995 2025.03.25 05:41:08.582
23 5.0.3.1629 2025.03.18 506d7 P P 17085 16843 2025.03.20 09:48:32.347 2025.03.20 09:48:49.432 2025.03.20 08:40:50.021 2025.03.20 08:41:06.864
24 5.0.3.1628 2025.03.14 16d05 P P 16768 17267 2025.03.18 09:42:34.173 2025.03.18 09:42:50.941 2025.03.18 08:36:23.245 2025.03.18 08:36:40.512
25 5.0.3.1627 2025.02.26 4e218 P P 17026 16922 2025.03.13 10:02:20.165 2025.03.13 10:02:37.191 2025.03.13 08:54:12.804 2025.03.13 08:54:29.726
26 5.0.3.1624 2025.02.25 dc3b2 P P 17621 16760 2025.02.26 15:34:24.245 2025.02.26 15:34:41.866 2025.02.26 14:27:01.202 2025.02.26 14:27:17.962
27 5.0.2.1615 2025.02.20 4a726 P F 17570 2391 2025.02.25 08:48:15.364 2025.02.25 08:48:32.934 2025.02.25 07:39:29.345 2025.02.25 07:39:31.736
28 5.0.2.1615 2025.02.14 9cb76 P P 17550 16335 2025.02.15 04:15:48.236 2025.02.15 04:16:05.786 2025.02.15 03:10:40.184 2025.02.15 03:10:56.519
29 5.0.2.1577 2025.02.07 f50a2 P P 16509 16708 2025.02.14 06:28:33.661 2025.02.14 06:28:50.170 2025.02.14 05:24:28.284 2025.02.14 05:24:44.992
30 5.0.2.1577 2024.12.24 3c80e P P 19615 14426 2025.02.06 09:42:03.315 2025.02.06 09:42:22.930 2025.02.06 08:38:04.436 2025.02.06 08:38:18.862
31 5.0.2.1576 2024.12.17 646b0 P P 19689 14084 2024.12.24 09:25:09.462 2024.12.24 09:25:29.151 2024.12.24 08:21:12.133 2024.12.24 08:21:26.217
32 5.0.2.1575 2024.12.09 9af52 P P 16468 15931 2024.12.16 09:21:53.460 2024.12.16 09:22:09.928 2024.12.16 08:18:03.679 2024.12.16 08:18:19.610
33 5.0.2.1575 2024.12.08 63d39 P P 16500 16332 2024.12.09 15:10:14.377 2024.12.09 15:10:30.877 2024.12.09 14:11:27.969 2024.12.09 14:11:44.301
34 5.0.2.1571 2024.12.08 8d11a P P 16454 15626 2024.12.09 06:23:51.450 2024.12.09 06:24:07.904 2024.12.09 05:23:07.171 2024.12.09 05:23:22.797
35 5.0.2.1567 2024.12.07 b01a2 P P 20068 15995 2024.12.08 02:02:26.229 2024.12.08 02:02:46.297 2024.12.08 00:59:58.206 2024.12.08 01:00:14.201
36 5.0.2.1567 2024.12.02 6ae74 P P 18794 15646 2024.12.04 09:05:42.754 2024.12.04 09:06:01.548 2024.12.04 08:07:00.964 2024.12.04 08:07:16.610
37 5.0.2.1567 2024.11.26 56e63 P P 19869 16818 2024.11.30 09:11:52.842 2024.11.30 09:12:12.711 2024.11.30 08:08:42.456 2024.11.30 08:08:59.274
38 5.0.2.1567 2024.11.21 96f61 P P 15570 15857 2024.11.27 09:08:38.958 2024.11.27 09:08:54.528 2024.11.27 08:06:05.462 2024.11.27 08:06:21.319
39 5.0.2.1567 2024.11.18 e1289 P F 19051 2213 2024.11.21 09:27:01.310 2024.11.21 09:27:20.361 2024.11.21 08:21:48.674 2024.11.21 08:21:50.887
40 5.0.2.1533 2024.10.23 0ec43 P P 19068 16386 2024.11.18 09:02:54.486 2024.11.18 09:03:13.554 2024.11.18 07:59:34.071 2024.11.18 07:59:50.457
41 5.0.2.1533 2024.10.22 8af7a P P 18714 15787 2024.10.23 09:10:05.523 2024.10.23 09:10:24.237 2024.10.23 08:07:26.734 2024.10.23 08:07:42.521
42 5.0.2.1532 2024.10.15 36dc0 P P 15610 13404 2024.10.22 15:12:15.084 2024.10.22 15:12:30.694 2024.10.22 14:09:35.026 2024.10.22 14:09:48.430
43 5.0.2.1518 2024.10.04 259ba P P 16495 16475 2024.10.15 09:06:14.838 2024.10.15 09:06:31.333 2024.10.15 08:03:50.963 2024.10.15 08:04:07.438
44 5.0.2.1518 2024.09.26 703cd P P 16772 15924 2024.10.03 09:11:07.301 2024.10.03 09:11:24.073 2024.10.03 08:08:20.830 2024.10.03 08:08:36.754
45 5.0.2.1489 2024.08.31 994a6 P F 21905 2393 2024.09.26 09:30:14.582 2024.09.26 09:30:36.487 2024.09.26 08:24:23.867 2024.09.26 08:24:26.260
46 5.0.2.1476 2024.08.09 843ea P F 16570 2369 2024.09.01 09:19:12.451 2024.09.01 09:19:29.021 2024.09.01 08:11:27.137 2024.09.01 08:11:29.506
47 5.0.1.1454 2024.08.08 30f9f P P 15595 16292 2024.08.09 09:00:11.248 2024.08.09 09:00:26.843 2024.08.09 07:57:24.212 2024.08.09 07:57:40.504
48 5.0.1.1453 2024.08.07 ebbc3 P P 15605 16116 2024.08.08 20:14:31.954 2024.08.08 20:14:47.559 2024.08.08 19:11:13.519 2024.08.08 19:11:29.635
49 5.0.1.1453 2024.08.06 1b9d0 P P 19273 16919 2024.08.07 08:28:17.107 2024.08.07 08:28:36.380 2024.08.07 07:30:38.005 2024.08.07 07:30:54.924
50 5.0.1.1453 2024.07.30 48044 P P 15647 18843 2024.08.03 08:27:16.853 2024.08.03 08:27:32.500 2024.08.03 07:29:26.168 2024.08.03 07:29:45.011
51 5.0.1.1453 2024.07.28 8d956 P P 15958 13211 2024.07.30 08:06:58.604 2024.07.30 08:07:14.562 2024.07.30 07:10:52.772 2024.07.30 07:11:05.983
52 5.0.1.1429 2024.07.19 8ee90 P P 16583 16522 2024.07.27 08:05:35.312 2024.07.27 08:05:51.895 2024.07.27 07:09:59.740 2024.07.27 07:10:16.262
53 5.0.1.1428 2024.07.15 00392 P P 19617 16261 2024.07.19 08:01:02.547 2024.07.19 08:01:22.164 2024.07.19 07:05:30.034 2024.07.19 07:05:46.295
54 5.0.1.1428 2024.06.30 67a31 P P 14673 15527 2024.07.15 08:13:38.459 2024.07.15 08:13:53.132 2024.07.15 07:16:44.243 2024.07.15 07:16:59.770
55 5.0.1.1415 2024.06.12 f8731 P P 15760 15711 2024.06.22 05:10:56.559 2024.06.22 05:11:12.319 2024.06.22 04:15:56.259 2024.06.22 04:16:11.970
56 5.0.1.1415 2024.06.11 31d74 P P 18924 18721 2024.06.11 23:40:52.940 2024.06.11 23:41:11.864 2024.06.11 22:49:09.591 2024.06.11 22:49:28.312
57 5.0.1.1401 2024.06.05 f9b76 P P 19111 16079 2024.06.11 04:31:47.072 2024.06.11 04:32:06.183 2024.06.11 03:39:51.536 2024.06.11 03:40:07.615
58 5.0.1.1398 2024.05.10 5e3ce P P 19361 18800 2024.05.25 05:26:30.732 2024.05.25 05:26:50.093 2024.05.25 04:35:00.133 2024.05.25 04:35:18.933
59 5.0.1.1397 2024.05.09 ee2ef P P 18971 18627 2024.05.10 05:22:28.906 2024.05.10 05:22:47.877 2024.05.10 04:31:29.771 2024.05.10 04:31:48.398
60 5.0.1.1392 2024.04.29 7dbc2 P P 22315 16096 2024.05.09 17:12:11.415 2024.05.09 17:12:33.730 2024.05.09 16:21:00.725 2024.05.09 16:21:16.821
61 5.0.1.1386 2024.04.25 c0328 P P 18252 18659 2024.04.29 05:21:30.630 2024.04.29 05:21:48.882 2024.04.29 04:30:34.221 2024.04.29 04:30:52.880
62 5.0.1.1386 2024.04.20 80571 P P 21050 15734 2024.04.25 05:24:02.333 2024.04.25 05:24:23.383 2024.04.25 04:32:21.320 2024.04.25 04:32:37.054
63 5.0.1.1378 2024.04.07 5292b P F 19502 2172 2024.04.20 05:43:49.504 2024.04.20 05:44:09.006 2024.04.20 04:47:48.638 2024.04.20 04:47:50.810
64 5.0.1.1346 2024.03.16 fe320 P P 20799 19408 2024.04.07 03:42:13.109 2024.04.07 03:42:33.908 2024.04.07 02:55:39.627 2024.04.07 02:55:59.035
65 5.0.1.1346 2024.03.02 da408 P P 19782 19283 2024.03.25 22:29:50.548 2024.03.25 22:30:10.330 2024.03.25 21:43:23.338 2024.03.25 21:43:42.621
66 5.0.1.1340 2024.02.17 08a71 P P 20861 19470 2024.03.25 23:59:33.839 2024.03.25 23:59:54.700 2024.03.25 23:13:07.598 2024.03.25 23:13:27.068
67 5.0.1.1325 2024.02.06 c98fb P F 21064 2312 2024.03.26 02:31:00.352 2024.03.26 02:31:21.416 2024.03.26 01:40:39.111 2024.03.26 01:40:41.423
68 5.0.1.1325 2024.02.02 1d438 P F 19876 2296 2024.03.26 07:48:25.602 2024.03.26 07:48:45.478 2024.03.26 06:57:09.878 2024.03.26 06:57:12.174
69 5.0.1.1325 2024.01.26 cffb6 P F 20767 2296 2024.03.26 10:14:11.807 2024.03.26 10:14:32.574 2024.03.26 09:23:50.596 2024.03.26 09:23:52.892
70 5.0.1.1325 2024.01.26 d3810 P F 21094 2297 2024.03.26 12:05:53.574 2024.03.26 12:06:14.668 2024.03.26 11:15:39.917 2024.03.26 11:15:42.214
71 5.0.1.1318 2024.01.21 a7ca3 P P 20142 20736 2024.03.26 13:34:55.209 2024.03.26 13:35:15.351 2024.03.26 12:48:33.635 2024.03.26 12:48:54.371
72 5.0.1.1318 2024.01.21 d429d P P 20157 20673 2024.03.26 15:16:31.562 2024.03.26 15:16:51.719 2024.03.26 14:30:13.246 2024.03.26 14:30:33.919
73 5.0.1.1318 2024.01.21 f1ab5 P P 20032 20688 2024.03.26 17:32:30.970 2024.03.26 17:32:51.002 2024.03.26 16:46:09.207 2024.03.26 16:46:29.895
74 5.0.1.1318 2024.01.20 46722 P P 21076 20533 2024.03.26 18:59:28.626 2024.03.26 18:59:49.702 2024.03.26 18:13:14.457 2024.03.26 18:13:34.990

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):