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

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 5575 6049 2025.06.29 11:16:10.024 2025.06.29 11:16:15.599 2025.06.29 10:12:27.485 2025.06.29 10:12:33.534
2 5.0.3.1657 2025.06.26 dcb8a P P 6484 6061 2025.06.27 11:16:46.970 2025.06.27 11:16:53.454 2025.06.27 10:13:11.026 2025.06.27 10:13:17.087
3 5.0.3.1657 2025.06.20 8b4d2 P P 5494 6038 2025.06.26 11:31:13.114 2025.06.26 11:31:18.608 2025.06.26 10:27:23.080 2025.06.26 10:27:29.118
4 5.0.3.1657 2025.06.19 4bd4c P P 5586 6070 2025.06.20 05:35:22.676 2025.06.20 05:35:28.262 2025.06.20 04:31:36.027 2025.06.20 04:31:42.097
5 5.0.3.1657 2025.06.11 dae6f P P 6546 6099 2025.06.19 11:06:52.259 2025.06.19 11:06:58.805 2025.06.19 10:03:03.438 2025.06.19 10:03:09.537
6 5.0.3.1657 2025.06.10 dbc92 P P 5573 6038 2025.06.11 08:53:04.909 2025.06.11 08:53:10.482 2025.06.11 07:49:03.495 2025.06.11 07:49:09.533
7 5.0.3.1656 2025.06.05 00512 P P 6483 6056 2025.06.10 10:08:23.386 2025.06.10 10:08:29.869 2025.06.10 09:04:05.809 2025.06.10 09:04:11.865
8 5.0.3.1656 2025.05.20 c4b11 P P 6493 6040 2025.06.03 09:55:07.908 2025.06.03 09:55:14.401 2025.06.03 08:52:04.358 2025.06.03 08:52:10.398
9 5.0.3.1652 2025.05.13 f51c6 P P 6476 6050 2025.05.21 06:36:06.805 2025.05.21 06:36:13.281 2025.05.21 05:33:19.809 2025.05.21 05:33:25.859
10 5.0.3.1651 2025.05.08 ee9d2 P F 5520 2396 2025.05.13 06:48:47.326 2025.05.13 06:48:52.846 2025.05.13 05:43:59.992 2025.05.13 05:44:02.388
11 5.0.3.1651 2025.05.04 3d914 P F 6520 2395 2025.05.09 04:37:50.239 2025.05.09 04:37:56.759 2025.05.09 03:32:58.012 2025.05.09 03:33:00.407
12 5.0.3.1651 2025.04.30 141ef P F 5497 2420 2025.05.02 04:45:23.096 2025.05.02 04:45:28.593 2025.05.02 03:40:50.796 2025.05.02 03:40:53.216
13 5.0.3.1650 2025.04.30 6253f P F 5501 2378 2025.05.01 04:44:28.685 2025.05.01 04:44:34.186 2025.05.01 03:39:47.341 2025.05.01 03:39:49.719
14 5.0.3.1650 2025.04.28 4cbff P F 5494 2198 2025.04.30 04:43:27.696 2025.04.30 04:43:33.190 2025.04.30 03:39:00.619 2025.04.30 03:39:02.817
15 5.0.3.1649 2025.04.21 5b2d0 P F 6546 2433 2025.04.26 10:17:30.467 2025.04.26 10:17:37.013 2025.04.26 09:12:02.665 2025.04.26 09:12:05.098
16 5.0.3.1648 2025.04.18 2f4c5 P P 5524 6042 2025.04.20 04:28:47.140 2025.04.20 04:28:52.664 2025.04.20 03:24:57.143 2025.04.20 03:25:03.185
17 5.0.3.1635 2025.04.03 f6bd1 P F 6473 2201 2025.04.18 06:56:28.442 2025.04.18 06:56:34.915 2025.04.18 05:51:12.285 2025.04.18 05:51:14.486
18 5.0.3.1635 2025.03.31 22ec6 P F 5502 2194 2025.04.03 10:02:15.055 2025.04.03 10:02:20.557 2025.04.03 08:56:36.449 2025.04.03 08:56:38.643
19 5.0.3.1633 2025.03.28 3123a P F 6487 2387 2025.03.31 10:00:41.220 2025.03.31 10:00:47.707 2025.03.31 08:55:05.541 2025.03.31 08:55:07.928
20 5.0.3.1633 2025.03.27 e0fb8 P F 6541 2393 2025.03.28 10:32:39.981 2025.03.28 10:32:46.522 2025.03.28 09:23:05.543 2025.03.28 09:23:07.936
21 5.0.3.1631 2025.03.25 bda65 P P 5581 6122 2025.03.27 10:13:13.327 2025.03.27 10:13:18.908 2025.03.27 09:05:34.594 2025.03.27 09:05:40.716
22 5.0.3.1631 2025.03.21 1925b P P 6513 6128 2025.03.25 06:47:14.956 2025.03.25 06:47:21.469 2025.03.25 05:39:32.691 2025.03.25 05:39:38.819
23 5.0.3.1629 2025.03.18 506d7 P P 6564 6097 2025.03.20 09:47:13.355 2025.03.20 09:47:19.919 2025.03.20 08:39:33.672 2025.03.20 08:39:39.769
24 5.0.3.1628 2025.03.14 16d05 P P 6496 6440 2025.03.18 09:41:18.831 2025.03.18 09:41:25.327 2025.03.18 08:35:05.877 2025.03.18 08:35:12.317
25 5.0.3.1627 2025.02.26 4e218 P P 5550 6077 2025.03.13 10:01:02.402 2025.03.13 10:01:07.952 2025.03.13 08:52:53.526 2025.03.13 08:52:59.603
26 5.0.3.1624 2025.02.25 dc3b2 P P 5629 6097 2025.02.26 15:33:08.801 2025.02.26 15:33:14.430 2025.02.26 14:25:43.104 2025.02.26 14:25:49.201
27 5.0.2.1615 2025.02.20 4a726 P F 6516 2199 2025.02.25 08:46:59.908 2025.02.25 08:47:06.424 2025.02.25 07:39:20.130 2025.02.25 07:39:22.329
28 5.0.2.1615 2025.02.14 9cb76 P P 5490 6079 2025.02.15 04:14:32.953 2025.02.15 04:14:38.443 2025.02.15 03:09:20.316 2025.02.15 03:09:26.395
29 5.0.2.1577 2025.02.07 f50a2 P P 6520 6057 2025.02.14 06:27:13.578 2025.02.14 06:27:20.098 2025.02.14 05:23:10.462 2025.02.14 05:23:16.519
30 5.0.2.1577 2024.12.24 3c80e P P 5491 6068 2025.02.06 09:40:45.321 2025.02.06 09:40:50.812 2025.02.06 08:36:45.596 2025.02.06 08:36:51.664
31 5.0.2.1576 2024.12.17 646b0 P P 6482 6076 2024.12.24 09:23:50.726 2024.12.24 09:23:57.208 2024.12.24 08:19:56.432 2024.12.24 08:20:02.508
32 5.0.2.1575 2024.12.09 9af52 P P 5482 6056 2024.12.16 09:20:35.370 2024.12.16 09:20:40.852 2024.12.16 08:16:49.776 2024.12.16 08:16:55.832
33 5.0.2.1575 2024.12.08 63d39 P P 6380 6926 2024.12.09 15:09:54.409 2024.12.09 15:10:00.789 2024.12.09 14:11:08.024 2024.12.09 14:11:14.950
34 5.0.2.1571 2024.12.08 8d11a P P 5415 5925 2024.12.09 06:23:32.309 2024.12.09 06:23:37.724 2024.12.09 05:22:47.162 2024.12.09 05:22:53.087
35 5.0.2.1567 2024.12.07 b01a2 P P 5458 6029 2024.12.08 02:02:07.734 2024.12.08 02:02:13.192 2024.12.08 00:59:38.699 2024.12.08 00:59:44.728
36 5.0.2.1567 2024.12.02 6ae74 P P 5555 5953 2024.12.04 09:05:23.499 2024.12.04 09:05:29.054 2024.12.04 08:06:40.986 2024.12.04 08:06:46.939
37 5.0.2.1567 2024.11.26 56e63 P P 5519 6057 2024.11.30 09:11:34.582 2024.11.30 09:11:40.101 2024.11.30 08:08:23.214 2024.11.30 08:08:29.271
38 5.0.2.1567 2024.11.21 96f61 P P 5477 6149 2024.11.27 09:08:19.806 2024.11.27 09:08:25.283 2024.11.27 08:05:46.151 2024.11.27 08:05:52.300
39 5.0.2.1567 2024.11.18 e1289 P F 6491 2390 2024.11.21 09:26:42.122 2024.11.21 09:26:48.613 2024.11.21 08:21:43.871 2024.11.21 08:21:46.261
40 5.0.2.1533 2024.10.23 0ec43 P P 5508 6054 2024.11.18 09:02:35.266 2024.11.18 09:02:40.774 2024.11.18 07:59:14.849 2024.11.18 07:59:20.903
41 5.0.2.1533 2024.10.22 8af7a P P 5492 6134 2024.10.23 09:09:46.285 2024.10.23 09:09:51.777 2024.10.23 08:07:06.999 2024.10.23 08:07:13.133
42 5.0.2.1532 2024.10.15 36dc0 P P 5530 6084 2024.10.22 15:11:55.715 2024.10.22 15:12:01.245 2024.10.22 14:09:15.737 2024.10.22 14:09:21.821
43 5.0.2.1518 2024.10.04 259ba P P 6541 6057 2024.10.15 09:05:55.568 2024.10.15 09:06:02.109 2024.10.15 08:03:31.719 2024.10.15 08:03:37.776
44 5.0.2.1518 2024.09.26 703cd P P 6514 6063 2024.10.03 09:10:48.049 2024.10.03 09:10:54.563 2024.10.03 08:08:01.576 2024.10.03 08:08:07.639
45 5.0.2.1489 2024.08.31 994a6 P F 6213 2412 2024.09.26 09:29:54.696 2024.09.26 09:30:00.909 2024.09.26 08:24:19.228 2024.09.26 08:24:21.640
46 5.0.2.1476 2024.08.09 843ea P F 6499 2425 2024.09.01 09:18:53.157 2024.09.01 09:18:59.656 2024.09.01 08:11:22.501 2024.09.01 08:11:24.926
47 5.0.1.1454 2024.08.08 30f9f P P 5594 6062 2024.08.09 08:59:51.815 2024.08.09 08:59:57.409 2024.08.09 07:57:05.002 2024.08.09 07:57:11.064
48 5.0.1.1453 2024.08.07 ebbc3 P P 6578 6066 2024.08.08 20:14:12.548 2024.08.08 20:14:19.126 2024.08.08 19:10:55.272 2024.08.08 19:11:01.338
49 5.0.1.1453 2024.08.06 1b9d0 P P 6569 6067 2024.08.07 08:27:57.688 2024.08.07 08:28:04.257 2024.08.07 07:30:18.764 2024.08.07 07:30:24.831
50 5.0.1.1453 2024.07.30 48044 P P 6596 6081 2024.08.03 08:25:52.572 2024.08.03 08:25:59.168 2024.08.03 07:28:10.312 2024.08.03 07:28:16.393
51 5.0.1.1453 2024.07.28 8d956 P P 5502 6062 2024.07.30 08:06:39.306 2024.07.30 08:06:44.808 2024.07.30 07:10:33.550 2024.07.30 07:10:39.612
52 5.0.1.1429 2024.07.19 8ee90 P P 6513 6036 2024.07.27 08:05:15.969 2024.07.27 08:05:22.482 2024.07.27 07:09:40.562 2024.07.27 07:09:46.598
53 5.0.1.1428 2024.07.15 00392 P P 6534 6068 2024.07.19 08:00:43.164 2024.07.19 08:00:49.698 2024.07.19 07:05:10.811 2024.07.19 07:05:16.879
54 5.0.1.1428 2024.06.30 67a31 P P 6523 6055 2024.07.15 08:12:14.279 2024.07.15 08:12:20.802 2024.07.15 07:15:27.414 2024.07.15 07:15:33.469
55 5.0.1.1415 2024.06.12 f8731 P P 6598 6056 2024.06.22 05:10:37.143 2024.06.22 05:10:43.741 2024.06.22 04:15:37.021 2024.06.22 04:15:43.077
56 5.0.1.1415 2024.06.11 31d74 P P 6720 6079 2024.06.11 23:40:33.234 2024.06.11 23:40:39.954 2024.06.11 22:48:49.354 2024.06.11 22:48:55.433
57 5.0.1.1401 2024.06.05 f9b76 P P 6719 6110 2024.06.11 04:31:27.351 2024.06.11 04:31:34.070 2024.06.11 03:39:32.220 2024.06.11 03:39:38.330
58 5.0.1.1398 2024.05.10 5e3ce P P 6689 6094 2024.05.25 05:26:12.104 2024.05.25 05:26:18.793 2024.05.25 04:34:40.850 2024.05.25 04:34:46.944
59 5.0.1.1397 2024.05.09 ee2ef P P 6688 6095 2024.05.10 05:22:09.294 2024.05.10 05:22:15.982 2024.05.10 04:31:10.519 2024.05.10 04:31:16.614
60 5.0.1.1392 2024.04.29 7dbc2 P P 5672 6095 2024.05.09 17:11:52.820 2024.05.09 17:11:58.492 2024.05.09 16:20:41.457 2024.05.09 16:20:47.552
61 5.0.1.1386 2024.04.25 c0328 P P 5689 7095 2024.04.29 05:21:11.002 2024.04.29 05:21:16.691 2024.04.29 04:30:13.936 2024.04.29 04:30:21.031
62 5.0.1.1386 2024.04.20 80571 P P 6594 6118 2024.04.25 05:23:42.877 2024.04.25 05:23:49.471 2024.04.25 04:32:01.986 2024.04.25 04:32:08.104
63 5.0.1.1378 2024.04.07 5292b P F 5688 2172 2024.04.20 05:43:30.861 2024.04.20 05:43:36.549 2024.04.20 04:47:44.169 2024.04.20 04:47:46.341
64 5.0.1.1346 2024.03.16 fe320 P P 6376 5906 2024.04.07 03:41:54.122 2024.04.07 03:42:00.498 2024.04.07 02:55:19.703 2024.04.07 02:55:25.609
65 5.0.1.1346 2024.03.02 da408 P P 5359 5906 2024.03.25 22:29:31.593 2024.03.25 22:29:36.952 2024.03.25 21:43:03.461 2024.03.25 21:43:09.367
66 5.0.1.1340 2024.02.17 08a71 P P 6359 6906 2024.03.25 23:59:14.884 2024.03.25 23:59:21.243 2024.03.25 23:12:47.689 2024.03.25 23:12:54.595
67 5.0.1.1325 2024.02.06 c98fb P F 6407 2172 2024.03.26 02:30:41.334 2024.03.26 02:30:47.741 2024.03.26 01:40:34.657 2024.03.26 01:40:36.829
68 5.0.1.1325 2024.02.02 1d438 P F 5422 2311 2024.03.26 07:48:06.521 2024.03.26 07:48:11.943 2024.03.26 06:57:05.378 2024.03.26 06:57:07.689
69 5.0.1.1325 2024.01.26 cffb6 P F 6375 2219 2024.03.26 10:13:52.821 2024.03.26 10:13:59.196 2024.03.26 09:23:46.079 2024.03.26 09:23:48.298
70 5.0.1.1325 2024.01.26 d3810 P F 6360 2296 2024.03.26 12:05:34.602 2024.03.26 12:05:40.962 2024.03.26 11:15:35.448 2024.03.26 11:15:37.744
71 5.0.1.1318 2024.01.21 a7ca3 P P 5375 5906 2024.03.26 13:34:36.222 2024.03.26 13:34:41.597 2024.03.26 12:48:14.727 2024.03.26 12:48:20.633
72 5.0.1.1318 2024.01.21 d429d P P 6359 5921 2024.03.26 15:16:11.622 2024.03.26 15:16:17.981 2024.03.26 14:29:54.338 2024.03.26 14:30:00.259
73 5.0.1.1318 2024.01.21 f1ab5 P P 5359 5906 2024.03.26 17:32:12.014 2024.03.26 17:32:17.373 2024.03.26 16:45:50.283 2024.03.26 16:45:56.189
74 5.0.1.1318 2024.01.20 46722 P P 6359 5874 2024.03.26 18:59:09.687 2024.03.26 18:59:16.046 2024.03.26 18:12:55.612 2024.03.26 18:13:01.486

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):