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

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:2149: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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:2064: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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:1295: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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.1657 2025.06.20 8b4d2 P P 6520 6047 2025.06.26 11:33:14.130 2025.06.26 11:33:20.650 2025.06.26 10:29:29.906 2025.06.26 10:29:35.953
2 5.0.3.1657 2025.06.19 4bd4c P P 6616 6044 2025.06.20 05:37:21.716 2025.06.20 05:37:28.332 2025.06.20 04:33:43.578 2025.06.20 04:33:49.622
3 5.0.3.1657 2025.06.11 dae6f P P 6595 6063 2025.06.19 11:08:54.881 2025.06.19 11:09:01.476 2025.06.19 10:05:10.168 2025.06.19 10:05:16.231
4 5.0.3.1657 2025.06.10 dbc92 P P 6666 6066 2025.06.11 08:55:05.074 2025.06.11 08:55:11.740 2025.06.11 07:51:11.984 2025.06.11 07:51:18.050
5 5.0.3.1656 2025.06.05 00512 P P 6520 6036 2025.06.10 10:10:25.972 2025.06.10 10:10:32.492 2025.06.10 09:06:13.643 2025.06.10 09:06:19.679
6 5.0.3.1656 2025.05.20 c4b11 P P 6517 6575 2025.06.03 09:57:06.363 2025.06.03 09:57:12.880 2025.06.03 08:54:09.053 2025.06.03 08:54:15.628
7 5.0.3.1652 2025.05.13 f51c6 P P 6510 6045 2025.05.21 06:38:06.591 2025.05.21 06:38:13.101 2025.05.21 05:35:28.268 2025.05.21 05:35:34.313
8 5.0.3.1651 2025.05.08 ee9d2 P F 6493 2392 2025.05.13 06:50:46.084 2025.05.13 06:50:52.577 2025.05.13 05:44:18.624 2025.05.13 05:44:21.016
9 5.0.3.1651 2025.05.04 3d914 P F 5583 2396 2025.05.09 04:39:50.058 2025.05.09 04:39:55.641 2025.05.09 03:33:16.718 2025.05.09 03:33:19.114
10 5.0.3.1651 2025.04.30 141ef P F 6453 2405 2025.05.02 04:47:21.323 2025.05.02 04:47:27.776 2025.05.02 03:41:09.549 2025.05.02 03:41:11.954
11 5.0.3.1650 2025.04.30 6253f P F 5552 2394 2025.05.01 04:46:30.437 2025.05.01 04:46:35.989 2025.05.01 03:40:05.968 2025.05.01 03:40:08.362
12 5.0.3.1650 2025.04.28 4cbff P F 6490 2220 2025.04.30 04:45:27.931 2025.04.30 04:45:34.421 2025.04.30 03:39:19.266 2025.04.30 03:39:21.486
13 5.0.3.1649 2025.04.21 5b2d0 P F 5551 2404 2025.04.26 10:19:33.547 2025.04.26 10:19:39.098 2025.04.26 09:12:21.430 2025.04.26 09:12:23.834
14 5.0.3.1648 2025.04.18 2f4c5 P P 5554 5062 2025.04.20 04:30:45.654 2025.04.20 04:30:51.208 2025.04.20 03:27:06.232 2025.04.20 03:27:11.294
15 5.0.3.1635 2025.04.03 f6bd1 P F 6478 2392 2025.04.18 06:58:28.709 2025.04.18 06:58:35.187 2025.04.18 05:51:30.710 2025.04.18 05:51:33.102
16 5.0.3.1635 2025.03.31 22ec6 P F 6514 2219 2025.04.03 10:04:15.064 2025.04.03 10:04:21.578 2025.04.03 08:56:55.072 2025.04.03 08:56:57.291
17 5.0.3.1633 2025.03.28 3123a P F 6498 2391 2025.03.31 10:02:40.141 2025.03.31 10:02:46.639 2025.03.31 08:55:24.223 2025.03.31 08:55:26.614
18 5.0.3.1633 2025.03.27 e0fb8 P F 5563 2204 2025.03.28 10:34:40.810 2025.03.28 10:34:46.373 2025.03.28 09:23:24.501 2025.03.28 09:23:26.705
19 5.0.3.1631 2025.03.25 bda65 P P 6066 6122 2025.03.27 10:15:11.550 2025.03.27 10:15:17.616 2025.03.27 09:07:38.972 2025.03.27 09:07:45.094
20 5.0.3.1631 2025.03.21 1925b P P 5602 6135 2025.03.25 06:49:17.991 2025.03.25 06:49:23.593 2025.03.25 05:41:44.930 2025.03.25 05:41:51.065
21 5.0.3.1629 2025.03.18 506d7 P P 5731 5659 2025.03.20 09:49:15.868 2025.03.20 09:49:21.599 2025.03.20 08:41:42.592 2025.03.20 08:41:48.251
22 5.0.3.1628 2025.03.14 16d05 P P 6529 6271 2025.03.18 09:43:17.982 2025.03.18 09:43:24.511 2025.03.18 08:37:18.914 2025.03.18 08:37:25.185
23 5.0.3.1627 2025.02.26 4e218 P P 6546 6091 2025.03.13 10:03:03.739 2025.03.13 10:03:10.285 2025.03.13 08:55:04.368 2025.03.13 08:55:10.459
24 5.0.3.1624 2025.02.25 dc3b2 P P 5659 7112 2025.02.26 15:35:12.336 2025.02.26 15:35:17.995 2025.02.26 14:27:53.788 2025.02.26 14:28:00.900
25 5.0.2.1615 2025.02.20 4a726 P F 5499 2202 2025.02.25 08:49:00.032 2025.02.25 08:49:05.531 2025.02.25 07:39:38.748 2025.02.25 07:39:40.950
26 5.0.2.1615 2025.02.14 9cb76 P P 5489 6082 2025.02.15 04:16:33.642 2025.02.15 04:16:39.131 2025.02.15 03:11:31.997 2025.02.15 03:11:38.079
27 5.0.2.1577 2025.02.07 f50a2 P P 5535 6059 2025.02.14 06:29:17.318 2025.02.14 06:29:22.853 2025.02.14 05:25:19.869 2025.02.14 05:25:25.928
28 5.0.2.1577 2024.12.24 3c80e P P 5553 6054 2025.02.06 09:42:49.588 2025.02.06 09:42:55.141 2025.02.06 08:38:53.597 2025.02.06 08:38:59.651
29 5.0.2.1576 2024.12.17 646b0 P P 6471 6080 2024.12.24 09:25:55.867 2024.12.24 09:26:02.338 2024.12.24 08:22:02.330 2024.12.24 08:22:08.410
30 5.0.2.1575 2024.12.09 9af52 P P 6554 7105 2024.12.16 09:22:37.461 2024.12.16 09:22:44.015 2024.12.16 08:18:55.869 2024.12.16 08:19:02.974
31 5.0.2.1575 2024.12.08 63d39 P P 5386 5972 2024.12.09 15:10:58.360 2024.12.09 15:11:03.746 2024.12.09 14:12:19.768 2024.12.09 14:12:25.740
32 5.0.2.1571 2024.12.08 8d11a P P 6465 5929 2024.12.09 06:24:35.757 2024.12.09 06:24:42.222 2024.12.09 05:23:59.260 2024.12.09 05:24:05.189
33 5.0.2.1567 2024.12.07 b01a2 P P 6438 6013 2024.12.08 02:03:12.998 2024.12.08 02:03:19.436 2024.12.08 01:00:51.052 2024.12.08 01:00:57.065
34 5.0.2.1567 2024.12.02 6ae74 P P 5466 5944 2024.12.04 09:06:29.117 2024.12.04 09:06:34.583 2024.12.04 08:07:52.892 2024.12.04 08:07:58.836
35 5.0.2.1567 2024.11.26 56e63 P P 6537 6073 2024.11.30 09:12:39.190 2024.11.30 09:12:45.727 2024.11.30 08:09:35.874 2024.11.30 08:09:41.947
36 5.0.2.1567 2024.11.21 96f61 P P 5517 6114 2024.11.27 09:09:21.627 2024.11.27 09:09:27.144 2024.11.27 08:06:58.054 2024.11.27 08:07:04.168
37 5.0.2.1567 2024.11.18 e1289 P F 5546 2416 2024.11.21 09:27:46.966 2024.11.21 09:27:52.512 2024.11.21 08:21:57.913 2024.11.21 08:22:00.329
38 5.0.2.1533 2024.10.23 0ec43 P P 6473 6076 2024.11.18 09:03:39.940 2024.11.18 09:03:46.413 2024.11.18 08:00:25.995 2024.11.18 08:00:32.071
39 5.0.2.1533 2024.10.22 8af7a P P 5549 6656 2024.10.23 09:10:50.746 2024.10.23 09:10:56.295 2024.10.23 08:08:18.185 2024.10.23 08:08:24.841
40 5.0.2.1532 2024.10.15 36dc0 P P 6556 6083 2024.10.22 15:12:57.712 2024.10.22 15:13:04.268 2024.10.22 14:10:24.973 2024.10.22 14:10:31.056
41 5.0.2.1518 2024.10.04 259ba P P 6509 7090 2024.10.15 09:06:57.409 2024.10.15 09:07:03.918 2024.10.15 08:04:43.411 2024.10.15 08:04:50.501
42 5.0.2.1518 2024.09.26 703cd P P 6560 6070 2024.10.03 09:11:50.101 2024.10.03 09:11:56.661 2024.10.03 08:09:13.246 2024.10.03 08:09:19.316
43 5.0.2.1489 2024.08.31 994a6 P F 6495 2214 2024.09.26 09:31:03.084 2024.09.26 09:31:09.579 2024.09.26 08:24:33.318 2024.09.26 08:24:35.532
44 5.0.2.1476 2024.08.09 843ea P F 6506 2411 2024.09.01 09:19:56.130 2024.09.01 09:20:02.636 2024.09.01 08:11:36.507 2024.09.01 08:11:38.918
45 5.0.1.1454 2024.08.08 30f9f P P 6590 6070 2024.08.09 09:00:54.037 2024.08.09 09:01:00.627 2024.08.09 07:58:17.050 2024.08.09 07:58:23.120
46 5.0.1.1453 2024.08.07 ebbc3 P P 5751 6056 2024.08.08 20:15:14.650 2024.08.08 20:15:20.401 2024.08.08 19:12:04.686 2024.08.08 19:12:10.742
47 5.0.1.1453 2024.08.06 1b9d0 P P 5699 7059 2024.08.07 08:29:03.498 2024.08.07 08:29:09.197 2024.08.07 07:31:30.389 2024.08.07 07:31:37.448
48 5.0.1.1453 2024.07.30 48044 P P 5585 6065 2024.08.03 08:27:59.583 2024.08.03 08:28:05.168 2024.08.03 07:30:20.799 2024.08.03 07:30:26.864
49 5.0.1.1453 2024.07.28 8d956 P P 5645 6057 2024.07.30 08:07:41.497 2024.07.30 08:07:47.142 2024.07.30 07:11:42.964 2024.07.30 07:11:49.021
50 5.0.1.1429 2024.07.19 8ee90 P P 5614 6053 2024.07.27 08:06:18.355 2024.07.27 08:06:23.969 2024.07.27 07:10:52.223 2024.07.27 07:10:58.276
51 5.0.1.1428 2024.07.15 00392 P P 5639 6072 2024.07.19 08:01:49.066 2024.07.19 08:01:54.705 2024.07.19 07:06:20.998 2024.07.19 07:06:27.070
52 5.0.1.1428 2024.06.30 67a31 P P 6576 6053 2024.07.15 08:14:20.247 2024.07.15 08:14:26.823 2024.07.15 07:17:34.233 2024.07.15 07:17:40.286
53 5.0.1.1415 2024.06.12 f8731 P P 6658 7073 2024.06.22 05:11:39.566 2024.06.22 05:11:46.224 2024.06.22 04:16:47.235 2024.06.22 04:16:54.308
54 5.0.1.1415 2024.06.11 31d74 P P 5735 6094 2024.06.11 23:41:39.587 2024.06.11 23:41:45.322 2024.06.11 22:50:04.363 2024.06.11 22:50:10.457
55 5.0.1.1401 2024.06.05 f9b76 P P 5704 7095 2024.06.11 04:32:33.514 2024.06.11 04:32:39.218 2024.06.11 03:40:43.480 2024.06.11 03:40:50.575
56 5.0.1.1398 2024.05.10 5e3ce P P 6688 6110 2024.05.25 05:27:17.518 2024.05.25 05:27:24.206 2024.05.25 04:35:55.470 2024.05.25 04:36:01.580
57 5.0.1.1397 2024.05.09 ee2ef P P 6689 6079 2024.05.10 05:23:15.662 2024.05.10 05:23:22.351 2024.05.10 04:32:24.857 2024.05.10 04:32:30.936
58 5.0.1.1392 2024.04.29 7dbc2 P P 6657 6126 2024.05.09 17:13:01.514 2024.05.09 17:13:08.171 2024.05.09 16:21:53.918 2024.05.09 16:22:00.044
59 5.0.1.1386 2024.04.25 c0328 P P 5719 6094 2024.04.29 05:22:16.980 2024.04.29 05:22:22.699 2024.04.29 04:31:29.993 2024.04.29 04:31:36.087
60 5.0.1.1386 2024.04.20 80571 P P 6581 6126 2024.04.25 05:24:50.530 2024.04.25 05:24:57.111 2024.04.25 04:33:14.038 2024.04.25 04:33:20.164
61 5.0.1.1378 2024.04.07 5292b P F 5719 2297 2024.04.20 05:44:36.431 2024.04.20 05:44:42.150 2024.04.20 04:47:57.624 2024.04.20 04:47:59.921
62 5.0.1.1346 2024.03.16 fe320 P P 6376 5922 2024.04.07 03:43:00.130 2024.04.07 03:43:06.506 2024.04.07 02:56:34.853 2024.04.07 02:56:40.775
63 5.0.1.1346 2024.03.02 da408 P P 6359 6906 2024.03.25 22:30:37.240 2024.03.25 22:30:43.599 2024.03.25 21:44:17.891 2024.03.25 21:44:24.797
64 5.0.1.1340 2024.02.17 08a71 P P 6390 5921 2024.03.26 00:00:20.860 2024.03.26 00:00:27.250 2024.03.25 23:14:03.042 2024.03.25 23:14:08.963
65 5.0.1.1325 2024.02.06 c98fb P F 6390 2171 2024.03.26 02:31:47.670 2024.03.26 02:31:54.060 2024.03.26 01:40:48.268 2024.03.26 01:40:50.439
66 5.0.1.1325 2024.02.02 1d438 P F 6469 2171 2024.03.26 07:49:12.294 2024.03.26 07:49:18.763 2024.03.26 06:57:19.082 2024.03.26 06:57:21.253
67 5.0.1.1325 2024.01.26 cffb6 P F 6375 2202 2024.03.26 10:14:58.750 2024.03.26 10:15:05.125 2024.03.26 09:23:59.753 2024.03.26 09:24:01.955
68 5.0.1.1325 2024.01.26 d3810 P F 6374 2171 2024.03.26 12:06:40.860 2024.03.26 12:06:47.234 2024.03.26 11:15:49.059 2024.03.26 11:15:51.230
69 5.0.1.1318 2024.01.21 a7ca3 P P 6359 5921 2024.03.26 13:35:42.167 2024.03.26 13:35:48.526 2024.03.26 12:49:29.585 2024.03.26 12:49:35.506
70 5.0.1.1318 2024.01.21 d429d P P 6359 5890 2024.03.26 15:17:18.598 2024.03.26 15:17:24.957 2024.03.26 14:31:09.049 2024.03.26 14:31:14.939
71 5.0.1.1318 2024.01.21 f1ab5 P P 6343 5906 2024.03.26 17:33:17.881 2024.03.26 17:33:24.224 2024.03.26 16:47:05.479 2024.03.26 16:47:11.385
72 5.0.1.1318 2024.01.20 46722 P P 6375 5890 2024.03.26 19:00:15.893 2024.03.26 19:00:22.268 2024.03.26 18:14:10.417 2024.03.26 18:14:16.307

Elapsed time, ms. Chart for last 72 runs:

Last commits information (all timestamps in UTC):