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

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.1674 2025.06.27 3ee5c P P 13930 13637 2025.06.28 11:21:38.750 2025.06.28 11:21:52.680 2025.06.28 10:18:02.631 2025.06.28 10:18:16.268
2 5.0.3.1657 2025.06.26 dcb8a P P 14093 13460 2025.06.27 11:18:25.067 2025.06.27 11:18:39.160 2025.06.27 10:14:57.745 2025.06.27 10:15:11.205
3 5.0.3.1657 2025.06.20 8b4d2 P P 14201 14078 2025.06.26 11:32:53.392 2025.06.26 11:33:07.593 2025.06.26 10:29:09.788 2025.06.26 10:29:23.866
4 5.0.3.1657 2025.06.19 4bd4c P P 13695 13481 2025.06.20 05:37:01.360 2025.06.20 05:37:15.055 2025.06.20 04:33:24.034 2025.06.20 04:33:37.515
5 5.0.3.1657 2025.06.11 dae6f P P 14230 13748 2025.06.19 11:08:33.695 2025.06.19 11:08:47.925 2025.06.19 10:04:49.345 2025.06.19 10:05:03.093
6 5.0.3.1657 2025.06.10 dbc92 P P 14490 13268 2025.06.11 08:54:43.802 2025.06.11 08:54:58.292 2025.06.11 07:50:51.651 2025.06.11 07:51:04.919
7 5.0.3.1656 2025.06.05 00512 P P 13741 13704 2025.06.10 10:10:05.637 2025.06.10 10:10:19.378 2025.06.10 09:05:53.879 2025.06.10 09:06:07.583
8 5.0.3.1656 2025.05.20 c4b11 P P 13933 13654 2025.06.03 09:56:45.934 2025.06.03 09:56:59.867 2025.06.03 08:53:49.358 2025.06.03 08:54:03.012
9 5.0.3.1652 2025.05.13 f51c6 P P 13956 14269 2025.05.21 06:37:46.092 2025.05.21 06:38:00.048 2025.05.21 05:35:07.923 2025.05.21 05:35:22.192
10 5.0.3.1651 2025.05.08 ee9d2 P F 13719 2407 2025.05.13 06:50:25.868 2025.05.13 06:50:39.587 2025.05.13 05:44:14.016 2025.05.13 05:44:16.423
11 5.0.3.1651 2025.05.04 3d914 P F 13534 2422 2025.05.09 04:39:30.030 2025.05.09 04:39:43.564 2025.05.09 03:33:12.080 2025.05.09 03:33:14.502
12 5.0.3.1651 2025.04.30 141ef P F 13387 2398 2025.05.02 04:47:01.449 2025.05.02 04:47:14.836 2025.05.02 03:41:04.957 2025.05.02 03:41:07.355
13 5.0.3.1650 2025.04.30 6253f P F 14120 2411 2025.05.01 04:46:09.778 2025.05.01 04:46:23.898 2025.05.01 03:40:01.350 2025.05.01 03:40:03.761
14 5.0.3.1650 2025.04.28 4cbff P F 14122 2212 2025.04.30 04:45:07.277 2025.04.30 04:45:21.399 2025.04.30 03:39:14.643 2025.04.30 03:39:16.855
15 5.0.3.1649 2025.04.21 5b2d0 P F 13334 2434 2025.04.26 10:19:13.658 2025.04.26 10:19:26.992 2025.04.26 09:12:16.778 2025.04.26 09:12:19.212
16 5.0.3.1648 2025.04.18 2f4c5 P P 13282 13155 2025.04.20 04:30:25.779 2025.04.20 04:30:39.061 2025.04.20 03:26:45.243 2025.04.20 03:26:58.398
17 5.0.3.1635 2025.04.03 f6bd1 P F 13926 2385 2025.04.18 06:58:08.303 2025.04.18 06:58:22.229 2025.04.18 05:51:26.127 2025.04.18 05:51:28.512
18 5.0.3.1635 2025.03.31 22ec6 P F 13793 2199 2025.04.03 10:03:54.706 2025.04.03 10:04:08.499 2025.04.03 08:56:50.475 2025.04.03 08:56:52.674
19 5.0.3.1633 2025.03.28 3123a P F 13412 2427 2025.03.31 10:02:20.177 2025.03.31 10:02:33.589 2025.03.31 08:55:19.589 2025.03.31 08:55:22.016
20 5.0.3.1633 2025.03.27 e0fb8 P F 13742 2394 2025.03.28 10:34:20.460 2025.03.28 10:34:34.202 2025.03.28 09:23:19.698 2025.03.28 09:23:22.092
21 5.0.3.1631 2025.03.25 bda65 P P 13477 13196 2025.03.27 10:14:51.425 2025.03.27 10:15:04.902 2025.03.27 09:07:19.644 2025.03.27 09:07:32.840
22 5.0.3.1631 2025.03.21 1925b P P 13693 13770 2025.03.25 06:48:57.693 2025.03.25 06:49:11.386 2025.03.25 05:41:24.000 2025.03.25 05:41:37.770
23 5.0.3.1629 2025.03.18 506d7 P P 13816 13159 2025.03.20 09:48:55.464 2025.03.20 09:49:09.280 2025.03.20 08:41:22.281 2025.03.20 08:41:35.440
24 5.0.3.1628 2025.03.14 16d05 P P 13597 13921 2025.03.18 09:42:57.850 2025.03.18 09:43:11.447 2025.03.18 08:36:57.827 2025.03.18 08:37:11.748
25 5.0.3.1627 2025.02.26 4e218 P P 14287 13837 2025.03.13 10:02:43.262 2025.03.13 10:02:57.549 2025.03.13 08:54:44.373 2025.03.13 08:54:58.210
26 5.0.3.1624 2025.02.25 dc3b2 P P 16107 13255 2025.02.26 15:34:49.528 2025.02.26 15:35:05.635 2025.02.26 14:27:34.386 2025.02.26 14:27:47.641
27 5.0.2.1615 2025.02.20 4a726 P F 13711 2203 2025.02.25 08:48:39.785 2025.02.25 08:48:53.496 2025.02.25 07:39:34.156 2025.02.25 07:39:36.359
28 5.0.2.1615 2025.02.14 9cb76 P P 14442 14149 2025.02.15 04:16:12.648 2025.02.15 04:16:27.090 2025.02.15 03:11:11.773 2025.02.15 03:11:25.922
29 5.0.2.1577 2025.02.07 f50a2 P P 13680 13544 2025.02.14 06:28:57.069 2025.02.14 06:29:10.749 2025.02.14 05:25:00.247 2025.02.14 05:25:13.791
30 5.0.2.1577 2024.12.24 3c80e P P 14247 13374 2025.02.06 09:42:28.774 2025.02.06 09:42:43.021 2025.02.06 08:38:34.147 2025.02.06 08:38:47.521
31 5.0.2.1576 2024.12.17 646b0 P P 14276 14777 2024.12.24 09:25:35.063 2024.12.24 09:25:49.339 2024.12.24 08:21:41.484 2024.12.24 08:21:56.261
32 5.0.2.1575 2024.12.09 9af52 P P 14122 13783 2024.12.16 09:22:16.789 2024.12.16 09:22:30.911 2024.12.16 08:18:35.872 2024.12.16 08:18:49.655
33 5.0.2.1575 2024.12.08 63d39 P P 14304 13420 2024.12.09 15:10:36.627 2024.12.09 15:10:50.931 2024.12.09 14:11:59.395 2024.12.09 14:12:12.815
34 5.0.2.1571 2024.12.08 8d11a P P 14391 14422 2024.12.09 06:24:14.711 2024.12.09 06:24:29.102 2024.12.09 05:23:37.896 2024.12.09 05:23:52.318
35 5.0.2.1567 2024.12.07 b01a2 P P 14910 13301 2024.12.08 02:02:52.134 2024.12.08 02:03:07.044 2024.12.08 01:00:30.716 2024.12.08 01:00:44.017
36 5.0.2.1567 2024.12.02 6ae74 P P 13417 13214 2024.12.04 09:06:08.422 2024.12.04 09:06:21.839 2024.12.04 08:07:32.712 2024.12.04 08:07:45.926
37 5.0.2.1567 2024.11.26 56e63 P P 14076 14286 2024.11.30 09:12:18.569 2024.11.30 09:12:32.645 2024.11.30 08:09:14.521 2024.11.30 08:09:28.807
38 5.0.2.1567 2024.11.21 96f61 P P 13692 14389 2024.11.27 09:09:01.379 2024.11.27 09:09:15.071 2024.11.27 08:06:36.575 2024.11.27 08:06:50.964
39 5.0.2.1567 2024.11.18 e1289 P F 14223 2401 2024.11.21 09:27:26.218 2024.11.21 09:27:40.441 2024.11.21 08:21:53.317 2024.11.21 08:21:55.718
40 5.0.2.1533 2024.10.23 0ec43 P P 13971 14184 2024.11.18 09:03:19.433 2024.11.18 09:03:33.404 2024.11.18 08:00:05.709 2024.11.18 08:00:19.893
41 5.0.2.1533 2024.10.22 8af7a P P 14027 14151 2024.10.23 09:10:30.125 2024.10.23 09:10:44.152 2024.10.23 08:07:57.854 2024.10.23 08:08:12.005
42 5.0.2.1532 2024.10.15 36dc0 P P 13480 14179 2024.10.22 15:12:37.657 2024.10.22 15:12:51.137 2024.10.22 14:10:03.715 2024.10.22 14:10:17.894
43 5.0.2.1518 2024.10.04 259ba P P 13681 13601 2024.10.15 09:06:37.201 2024.10.15 09:06:50.882 2024.10.15 08:04:23.704 2024.10.15 08:04:37.305
44 5.0.2.1518 2024.09.26 703cd P P 13662 14181 2024.10.03 09:11:29.931 2024.10.03 09:11:43.593 2024.10.03 08:08:51.990 2024.10.03 08:09:06.171
45 5.0.2.1489 2024.08.31 994a6 P F 13774 2213 2024.09.26 09:30:42.745 2024.09.26 09:30:56.519 2024.09.26 08:24:28.702 2024.09.26 08:24:30.915
46 5.0.2.1476 2024.08.09 843ea P F 14698 2207 2024.09.01 09:19:34.891 2024.09.01 09:19:49.589 2024.09.01 08:11:31.918 2024.09.01 08:11:34.125
47 5.0.1.1454 2024.08.08 30f9f P P 13561 14212 2024.08.09 09:00:33.883 2024.08.09 09:00:47.444 2024.08.09 07:57:55.763 2024.08.09 07:58:09.975
48 5.0.1.1453 2024.08.07 ebbc3 P P 13459 13751 2024.08.08 20:14:54.582 2024.08.08 20:15:08.041 2024.08.08 19:11:44.877 2024.08.08 19:11:58.628
49 5.0.1.1453 2024.08.06 1b9d0 P P 14153 14078 2024.08.07 08:28:42.544 2024.08.07 08:28:56.697 2024.08.07 07:31:10.229 2024.08.07 07:31:24.307
50 5.0.1.1453 2024.07.30 48044 P P 14385 13456 2024.08.03 08:27:38.597 2024.08.03 08:27:52.982 2024.08.03 07:30:00.261 2024.08.03 07:30:13.717
51 5.0.1.1453 2024.07.28 8d956 P P 14365 13610 2024.07.30 08:07:20.570 2024.07.30 08:07:34.935 2024.07.30 07:11:22.266 2024.07.30 07:11:35.876
52 5.0.1.1429 2024.07.19 8ee90 P P 13715 13594 2024.07.27 08:05:58.037 2024.07.27 08:06:11.752 2024.07.27 07:10:31.554 2024.07.27 07:10:45.148
53 5.0.1.1428 2024.07.15 00392 P P 14301 13392 2024.07.19 08:01:28.172 2024.07.19 08:01:42.473 2024.07.19 07:06:01.538 2024.07.19 07:06:14.930
54 5.0.1.1428 2024.06.30 67a31 P P 13546 13152 2024.07.15 08:14:00.122 2024.07.15 08:14:13.668 2024.07.15 07:17:15.013 2024.07.15 07:17:28.165
55 5.0.1.1415 2024.06.12 f8731 P P 13638 13952 2024.06.22 05:11:19.288 2024.06.22 05:11:32.926 2024.06.22 04:16:27.207 2024.06.22 04:16:41.159
56 5.0.1.1415 2024.06.11 31d74 P P 14580 13642 2024.06.11 23:41:18.287 2024.06.11 23:41:32.867 2024.06.11 22:49:43.595 2024.06.11 22:49:57.237
57 5.0.1.1401 2024.06.05 f9b76 P P 14205 14330 2024.06.11 04:32:12.559 2024.06.11 04:32:26.764 2024.06.11 03:40:22.993 2024.06.11 03:40:37.323
58 5.0.1.1398 2024.05.10 5e3ce P P 14392 14050 2024.05.25 05:26:56.406 2024.05.25 05:27:10.798 2024.05.25 04:35:34.263 2024.05.25 04:35:48.313
59 5.0.1.1397 2024.05.09 ee2ef P P 14768 14048 2024.05.10 05:22:54.206 2024.05.10 05:23:08.974 2024.05.10 04:32:03.729 2024.05.10 04:32:17.777
60 5.0.1.1392 2024.04.29 7dbc2 P P 14799 13626 2024.05.09 17:12:40.012 2024.05.09 17:12:54.811 2024.05.09 16:21:33.151 2024.05.09 16:21:46.777
61 5.0.1.1386 2024.04.25 c0328 P P 13970 14548 2024.04.29 05:21:56.196 2024.04.29 05:22:10.166 2024.04.29 04:31:08.241 2024.04.29 04:31:22.789
62 5.0.1.1386 2024.04.20 80571 P P 14304 14487 2024.04.25 05:24:29.615 2024.04.25 05:24:43.919 2024.04.25 04:32:52.389 2024.04.25 04:33:06.876
63 5.0.1.1378 2024.04.07 5292b P F 14376 2312 2024.04.20 05:44:15.319 2024.04.20 05:44:29.695 2024.04.20 04:47:53.139 2024.04.20 04:47:55.451
64 5.0.1.1346 2024.03.16 fe320 P P 13939 13689 2024.04.07 03:42:39.784 2024.04.07 03:42:53.723 2024.04.07 02:56:14.210 2024.04.07 02:56:27.899
65 5.0.1.1346 2024.03.02 da408 P P 13720 13219 2024.03.25 22:30:17.144 2024.03.25 22:30:30.864 2024.03.25 21:43:58.764 2024.03.25 21:44:11.983
66 5.0.1.1340 2024.02.17 08a71 P P 13938 13876 2024.03.26 00:00:00.545 2024.03.26 00:00:14.483 2024.03.25 23:13:42.211 2024.03.25 23:13:56.087
67 5.0.1.1325 2024.02.06 c98fb P F 13954 2312 2024.03.26 02:31:27.308 2024.03.26 02:31:41.262 2024.03.26 01:40:43.627 2024.03.26 01:40:45.939
68 5.0.1.1325 2024.02.02 1d438 P F 13391 2296 2024.03.26 07:48:52.433 2024.03.26 07:49:05.824 2024.03.26 06:57:14.441 2024.03.26 06:57:16.737
69 5.0.1.1325 2024.01.26 cffb6 P F 13922 2297 2024.03.26 10:14:38.451 2024.03.26 10:14:52.373 2024.03.26 09:23:55.127 2024.03.26 09:23:57.424
70 5.0.1.1325 2024.01.26 d3810 P F 13954 2171 2024.03.26 12:06:20.529 2024.03.26 12:06:34.483 2024.03.26 11:15:44.590 2024.03.26 11:15:46.761
71 5.0.1.1318 2024.01.21 a7ca3 P P 13532 13100 2024.03.26 13:35:22.243 2024.03.26 13:35:35.775 2024.03.26 12:49:09.530 2024.03.26 12:49:22.630
72 5.0.1.1318 2024.01.21 d429d P P 13720 13047 2024.03.26 15:16:58.502 2024.03.26 15:17:12.222 2024.03.26 14:30:49.078 2024.03.26 14:31:02.125
73 5.0.1.1318 2024.01.21 f1ab5 P P 13719 13470 2024.03.26 17:32:57.785 2024.03.26 17:33:11.504 2024.03.26 16:46:45.054 2024.03.26 16:46:58.524
74 5.0.1.1318 2024.01.20 46722 P P 13938 13438 2024.03.26 18:59:55.563 2024.03.26 19:00:09.501 2024.03.26 18:13:50.070 2024.03.26 18:14:03.508

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):