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

    @pytest.mark.replication
    @pytest.mark.version('>=4.0.5')
    def test_1(act_db_main: Action,  act_db_repl: Action, tmp_data: Path, capsys):
    
        out_prep, out_main, out_drop, blob_err = '', '', '', ''
        # 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() as con:

tests\functional\replication\test_blob_characters_garbled_when_conn_charset_differs.py:347: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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\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\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 9247 8868 2025.06.30 11:14:19.866 2025.06.30 11:14:29.113 2025.06.30 10:10:32.938 2025.06.30 10:10:41.806
2 5.0.3.1657 2025.06.26 dcb8a P P 9257 9697 2025.06.27 11:15:47.740 2025.06.27 11:15:56.997 2025.06.27 10:12:08.607 2025.06.27 10:12:18.304
3 5.0.3.1657 2025.06.20 8b4d2 P P 9314 9707 2025.06.26 11:30:09.947 2025.06.26 11:30:19.261 2025.06.26 10:26:24.011 2025.06.26 10:26:33.718
4 5.0.3.1657 2025.06.19 4bd4c P P 9238 8686 2025.06.20 05:34:23.315 2025.06.20 05:34:32.553 2025.06.20 04:30:37.201 2025.06.20 04:30:45.887
5 5.0.3.1657 2025.06.11 dae6f P P 9216 9689 2025.06.19 11:05:50.977 2025.06.19 11:06:00.193 2025.06.19 10:02:01.067 2025.06.19 10:02:10.756
6 5.0.3.1657 2025.06.10 dbc92 P P 9616 8692 2025.06.11 08:52:06.064 2025.06.11 08:52:15.680 2025.06.11 07:47:58.636 2025.06.11 07:48:07.328
7 5.0.3.1656 2025.06.05 00512 P P 9247 8687 2025.06.10 10:07:21.207 2025.06.10 10:07:30.454 2025.06.10 09:03:02.315 2025.06.10 09:03:11.002
8 5.0.3.1656 2025.05.20 c4b11 P P 9231 8661 2025.06.03 09:54:06.269 2025.06.03 09:54:15.500 2025.06.03 08:51:02.736 2025.06.03 08:51:11.397
9 5.0.3.1652 2025.05.13 f51c6 P P 9246 9651 2025.05.21 06:35:05.409 2025.05.21 06:35:14.655 2025.05.21 05:32:17.502 2025.05.21 05:32:27.153
10 5.0.3.1651 2025.05.08 ee9d2 P F 9223 2209 2025.05.13 06:47:47.397 2025.05.13 06:47:56.620 2025.05.13 05:43:41.581 2025.05.13 05:43:43.790
11 5.0.3.1651 2025.05.04 3d914 P F 8465 2211 2025.05.09 04:36:48.661 2025.05.09 04:36:57.126 2025.05.09 03:32:39.607 2025.05.09 03:32:41.818
12 5.0.3.1651 2025.04.30 141ef P F 9273 2205 2025.05.02 04:44:23.663 2025.05.02 04:44:32.936 2025.05.02 03:40:32.416 2025.05.02 03:40:34.621
13 5.0.3.1650 2025.04.30 6253f P F 8288 2377 2025.05.01 04:43:26.534 2025.05.01 04:43:34.822 2025.05.01 03:39:28.803 2025.05.01 03:39:31.180
14 5.0.3.1650 2025.04.28 4cbff P F 8220 2396 2025.04.30 04:42:28.623 2025.04.30 04:42:36.843 2025.04.30 03:38:42.058 2025.04.30 03:38:44.454
15 5.0.3.1649 2025.04.21 5b2d0 P F 9298 2432 2025.04.26 10:16:31.940 2025.04.26 10:16:41.238 2025.04.26 09:11:44.011 2025.04.26 09:11:46.443
16 5.0.3.1648 2025.04.18 2f4c5 P P 9281 8717 2025.04.20 04:27:45.126 2025.04.20 04:27:54.407 2025.04.20 03:23:55.902 2025.04.20 03:24:04.619
17 5.0.3.1635 2025.04.03 f6bd1 P F 9241 2210 2025.04.18 06:55:26.844 2025.04.18 06:55:36.085 2025.04.18 05:50:53.664 2025.04.18 05:50:55.874
18 5.0.3.1635 2025.03.31 22ec6 P F 9238 2399 2025.04.03 10:01:15.822 2025.04.03 10:01:25.060 2025.04.03 08:56:17.864 2025.04.03 08:56:20.263
19 5.0.3.1633 2025.03.28 3123a P F 8605 2194 2025.03.31 09:59:42.352 2025.03.31 09:59:50.957 2025.03.31 08:54:47.143 2025.03.31 08:54:49.337
20 5.0.3.1633 2025.03.27 e0fb8 P F 9322 2438 2025.03.28 10:31:38.053 2025.03.28 10:31:47.375 2025.03.28 09:22:46.820 2025.03.28 09:22:49.258
21 5.0.3.1631 2025.03.25 bda65 P P 9375 9291 2025.03.27 10:12:10.801 2025.03.27 10:12:20.176 2025.03.27 09:04:32.604 2025.03.27 09:04:41.895
22 5.0.3.1631 2025.03.21 1925b P P 8957 8631 2025.03.25 06:46:12.507 2025.03.25 06:46:21.464 2025.03.25 05:38:30.944 2025.03.25 05:38:39.575
23 5.0.3.1629 2025.03.18 506d7 P P 9254 9544 2025.03.20 09:46:11.313 2025.03.20 09:46:20.567 2025.03.20 08:38:30.260 2025.03.20 08:38:39.804
24 5.0.3.1628 2025.03.14 16d05 P P 9236 8769 2025.03.18 09:40:19.529 2025.03.18 09:40:28.765 2025.03.18 08:34:04.291 2025.03.18 08:34:13.060
25 5.0.3.1627 2025.02.26 4e218 P P 8678 8759 2025.03.13 09:59:56.264 2025.03.13 10:00:04.942 2025.03.13 08:51:51.689 2025.03.13 08:52:00.448
26 5.0.3.1624 2025.02.25 dc3b2 P P 8438 8903 2025.02.26 15:32:06.153 2025.02.26 15:32:14.591 2025.02.26 14:24:41.221 2025.02.26 14:24:50.124
27 5.0.2.1615 2025.02.20 4a726 P F 9331 2394 2025.02.25 08:45:58.006 2025.02.25 08:46:07.337 2025.02.25 07:39:01.515 2025.02.25 07:39:03.909
28 5.0.2.1615 2025.02.14 9cb76 P P 9256 8548 2025.02.15 04:13:32.734 2025.02.15 04:13:41.990 2025.02.15 03:08:18.588 2025.02.15 03:08:27.136
29 5.0.2.1577 2025.02.07 f50a2 P P 9227 9701 2025.02.14 06:26:11.977 2025.02.14 06:26:21.204 2025.02.14 05:22:07.969 2025.02.14 05:22:17.670
30 5.0.2.1577 2024.12.24 3c80e P P 9249 9560 2025.02.06 09:39:42.974 2025.02.06 09:39:52.223 2025.02.06 08:35:42.888 2025.02.06 08:35:52.448
31 5.0.2.1576 2024.12.17 646b0 P P 9327 9734 2024.12.24 09:22:48.942 2024.12.24 09:22:58.269 2024.12.24 08:18:57.345 2024.12.24 08:19:07.079
32 5.0.2.1575 2024.12.09 9af52 P P 9276 9558 2024.12.16 09:19:32.135 2024.12.16 09:19:41.411 2024.12.16 08:15:47.347 2024.12.16 08:15:56.905
33 5.0.2.1575 2024.12.08 63d39 P P 9069 9511 2024.12.09 15:08:52.834 2024.12.09 15:09:01.903 2024.12.09 14:10:09.488 2024.12.09 14:10:18.999
34 5.0.2.1571 2024.12.08 8d11a P P 8310 9032 2024.12.09 06:22:32.625 2024.12.09 06:22:40.935 2024.12.09 05:21:48.206 2024.12.09 05:21:57.238
35 5.0.2.1567 2024.12.07 b01a2 P P 9639 9357 2024.12.08 02:01:00.513 2024.12.08 02:01:10.152 2024.12.08 00:58:34.191 2024.12.08 00:58:43.548
36 5.0.2.1567 2024.12.02 6ae74 P P 9276 9498 2024.12.04 09:04:23.676 2024.12.04 09:04:32.952 2024.12.04 08:05:39.096 2024.12.04 08:05:48.594
37 5.0.2.1567 2024.11.26 56e63 P P 9236 8589 2024.11.30 09:10:35.087 2024.11.30 09:10:44.323 2024.11.30 08:07:21.798 2024.11.30 08:07:30.387
38 5.0.2.1567 2024.11.21 96f61 P P 9218 9548 2024.11.27 09:07:17.075 2024.11.27 09:07:26.293 2024.11.27 08:04:43.201 2024.11.27 08:04:52.749
39 5.0.2.1567 2024.11.18 e1289 P F 9231 2199 2024.11.21 09:25:42.268 2024.11.21 09:25:51.499 2024.11.21 08:21:25.203 2024.11.21 08:21:27.402
40 5.0.2.1533 2024.10.23 0ec43 P P 9316 8694 2024.11.18 09:01:32.026 2024.11.18 09:01:41.342 2024.11.18 07:58:12.751 2024.11.18 07:58:21.445
41 5.0.2.1533 2024.10.22 8af7a P P 8483 9745 2024.10.23 09:08:47.152 2024.10.23 09:08:55.635 2024.10.23 08:06:04.227 2024.10.23 08:06:13.972
42 5.0.2.1532 2024.10.15 36dc0 P P 8691 8706 2024.10.22 15:10:56.108 2024.10.22 15:11:04.799 2024.10.22 14:08:13.741 2024.10.22 14:08:22.447
43 5.0.2.1518 2024.10.04 259ba P P 9325 8722 2024.10.15 09:04:53.880 2024.10.15 09:05:03.205 2024.10.15 08:02:29.373 2024.10.15 08:02:38.095
44 5.0.2.1518 2024.09.26 703cd P P 9276 9584 2024.10.03 09:09:46.526 2024.10.03 09:09:55.802 2024.10.03 08:07:01.523 2024.10.03 08:07:11.107
45 5.0.2.1489 2024.08.31 994a6 P F 9103 2380 2024.09.26 09:28:49.636 2024.09.26 09:28:58.739 2024.09.26 08:24:00.547 2024.09.26 08:24:02.927
46 5.0.2.1476 2024.08.09 843ea P F 8442 2221 2024.09.01 09:17:54.798 2024.09.01 09:18:03.240 2024.09.01 08:11:04.100 2024.09.01 08:11:06.321
47 5.0.1.1454 2024.08.08 30f9f P P 9343 8698 2024.08.09 08:58:48.065 2024.08.09 08:58:57.408 2024.08.09 07:56:03.520 2024.08.09 07:56:12.218
48 5.0.1.1453 2024.08.07 ebbc3 P P 9358 9692 2024.08.08 20:13:10.168 2024.08.08 20:13:19.526 2024.08.08 19:09:52.576 2024.08.08 19:10:02.268
49 5.0.1.1453 2024.08.06 1b9d0 P P 9319 9560 2024.08.07 08:26:54.573 2024.08.07 08:27:03.892 2024.08.07 07:29:15.599 2024.08.07 07:29:25.159
50 5.0.1.1453 2024.07.30 48044 P P 8528 8707 2024.08.03 08:24:53.732 2024.08.03 08:25:02.260 2024.08.03 07:27:08.205 2024.08.03 07:27:16.912
51 5.0.1.1453 2024.07.28 8d956 P P 9307 8697 2024.07.30 08:05:33.511 2024.07.30 08:05:42.818 2024.07.30 07:09:32.038 2024.07.30 07:09:40.735
52 5.0.1.1429 2024.07.19 8ee90 P P 9369 8683 2024.07.27 08:04:13.153 2024.07.27 08:04:22.522 2024.07.27 07:08:38.330 2024.07.27 07:08:47.013
53 5.0.1.1428 2024.07.15 00392 P P 9347 8711 2024.07.19 07:59:41.163 2024.07.19 07:59:50.510 2024.07.19 07:04:08.763 2024.07.19 07:04:17.474
54 5.0.1.1428 2024.06.30 67a31 P P 8671 9031 2024.07.15 08:11:09.115 2024.07.15 08:11:17.786 2024.07.15 07:14:25.431 2024.07.15 07:14:34.462
55 5.0.1.1415 2024.06.12 f8731 P P 8782 7722 2024.06.22 05:09:38.040 2024.06.22 05:09:46.822 2024.06.22 04:14:36.544 2024.06.22 04:14:44.266
56 5.0.1.1415 2024.06.11 31d74 P P 10455 10627 2024.06.11 23:39:19.833 2024.06.11 23:39:30.288 2024.06.11 22:47:42.050 2024.06.11 22:47:52.677
57 5.0.1.1401 2024.06.05 f9b76 P P 10408 10580 2024.06.11 04:30:13.686 2024.06.11 04:30:24.094 2024.06.11 03:38:19.819 2024.06.11 03:38:30.399
58 5.0.1.1398 2024.05.10 5e3ce P P 8345 7595 2024.05.25 05:25:03.000 2024.05.25 05:25:11.345 2024.05.25 04:33:32.229 2024.05.25 04:33:39.824
59 5.0.1.1397 2024.05.09 ee2ef P P 8485 9610 2024.05.10 05:20:56.800 2024.05.10 05:21:05.285 2024.05.10 04:30:03.853 2024.05.10 04:30:13.463
60 5.0.1.1392 2024.04.29 7dbc2 P P 10360 9470 2024.05.09 17:10:39.390 2024.05.09 17:10:49.750 2024.05.09 16:19:32.559 2024.05.09 16:19:42.029
61 5.0.1.1386 2024.04.25 c0328 P P 9517 10581 2024.04.29 05:19:57.069 2024.04.29 05:20:06.586 2024.04.29 04:29:01.629 2024.04.29 04:29:12.210
62 5.0.1.1386 2024.04.20 80571 P P 9331 9503 2024.04.25 05:22:30.956 2024.04.25 05:22:40.287 2024.04.25 04:30:52.926 2024.04.25 04:31:02.429
63 5.0.1.1378 2024.04.07 5292b P F 8517 2172 2024.04.20 05:42:18.540 2024.04.20 05:42:27.057 2024.04.20 04:47:26.120 2024.04.20 04:47:28.292
64 5.0.1.1346 2024.03.16 fe320 P P 8000 9376 2024.04.07 03:40:56.210 2024.04.07 03:41:04.210 2024.04.07 02:54:20.585 2024.04.07 02:54:29.961
65 5.0.1.1346 2024.03.02 da408 P P 10000 10376 2024.03.25 22:28:31.758 2024.03.25 22:28:41.758 2024.03.25 21:42:04.345 2024.03.25 21:42:14.721
66 5.0.1.1340 2024.02.17 08a71 P P 10188 8359 2024.03.25 23:58:14.783 2024.03.25 23:58:24.971 2024.03.25 23:11:50.605 2024.03.25 23:11:58.964
67 5.0.1.1325 2024.02.06 c98fb F F 9750 2187 2024.03.26 02:29:42.609 2024.03.26 02:29:52.359 2024.03.26 01:40:16.639 2024.03.26 01:40:18.826
68 5.0.1.1325 2024.02.02 1d438 F F 8828 2296 2024.03.26 07:47:08.202 2024.03.26 07:47:17.030 2024.03.26 06:56:47.266 2024.03.26 06:56:49.562
69 5.0.1.1325 2024.01.26 cffb6 F F 8578 2187 2024.03.26 10:12:55.424 2024.03.26 10:13:04.002 2024.03.26 09:23:27.999 2024.03.26 09:23:30.186
70 5.0.1.1325 2024.01.26 d3810 F F 10578 2312 2024.03.26 12:04:35.049 2024.03.26 12:04:45.627 2024.03.26 11:15:17.368 2024.03.26 11:15:19.680
71 5.0.1.1318 2024.01.21 a7ca3 F F 10579 8797 2024.03.26 13:33:36.528 2024.03.26 13:33:47.107 2024.03.26 12:47:16.205 2024.03.26 12:47:25.002
72 5.0.1.1318 2024.01.21 d429d F F 9563 9797 2024.03.26 15:15:13.350 2024.03.26 15:15:22.913 2024.03.26 14:28:55.550 2024.03.26 14:29:05.347
73 5.0.1.1318 2024.01.21 f1ab5 F F 9563 7657 2024.03.26 17:31:12.804 2024.03.26 17:31:22.367 2024.03.26 16:44:53.370 2024.03.26 16:45:01.027
74 5.0.1.1318 2024.01.20 46722 F F 10562 9657 2024.03.26 18:58:10.134 2024.03.26 18:58:20.696 2024.03.26 18:11:56.433 2024.03.26 18:12:06.090

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):