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

    @pytest.mark.replication
    @pytest.mark.version('>=4.0.1')
    def test_1(act_db_main: Action,  act_db_repl: Action, capsys):
    
    
        out_prep, out_main, out_drop = '', '', ''
    
        # Obtain full path + filename for DB_MAIN and DB_REPL aliases.
        # NOTE: we must NOT use 'a.db.db_path' for ALIASED databases!
        # It will return '.' rather than full path+filename.
        # Use only con.info.name for that!
        #
        db_info = {}
        for a in (act_db_main, act_db_repl):
>           with a.db.connect(no_db_triggers = True) as con:

tests\functional\replication\test_updating_blob_with_empty_string_stops_replication.py:366: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

database = 'db_main_alias'

    def connect(database: str, *, user: str=None, password: str=None, role: str=None,
                no_gc: bool=None, no_db_triggers: bool=None, dbkey_scope: DBKeyScope=None,
                crypt_callback: iCryptKeyCallbackImpl=None, charset: str=None,
                auth_plugin_list: str=None, session_time_zone: str=None) -> Connection:
        """Establishes a connection to the database.
    
        Arguments:
            database: DSN or Database configuration name.
            user: User name.
            password: User password.
            role: User role.
            no_gc: Do not perform garbage collection for this connection.
            no_db_triggers: Do not execute database triggers for this connection.
            dbkey_scope: DBKEY scope override for connection.
            crypt_callback: Callback that provides encryption key for the database.
            charset: Character set for connection.
            auth_plugin_list: List of authentication plugins override
            session_time_zone: Session time zone [Firebird 4]
    
        Hooks:
            Event `.ConnectionHook.ATTACH_REQUEST`: Executed after all parameters
            are preprocessed and before `Connection` is created. Hook
            must have signature::
    
                hook_func(dsn: str, dpb: bytes) -> Optional[Connection]
    
            Hook may return `Connection` instance or None.
            First instance returned by any hook will become the return value
            of this function and other hooks are not called.
    
            Event `.ConnectionHook.ATTACHED`: Executed before `Connection` instance is
            returned. Hook must have signature::
    
                hook_func(connection: Connection) -> None
    
            Any value returned by hook is ignored.
        """
        db_config = driver_config.get_database(database)
        if db_config is None:
            db_config = driver_config.db_defaults
        else:
            database = db_config.database.value
        if db_config.server.value is None:
            srv_config = driver_config.server_defaults
        else:
            srv_config = driver_config.get_server(db_config.server.value)
            if srv_config is None:
                raise ValueError(f"Configuration for server '{db_config.server.value}' not found")
        if user is None:
            user = db_config.user.value
            if user is None:
                user = srv_config.user.value
        if password is None:
            password = db_config.password.value
            if password is None:
                password = srv_config.password.value
        if role is None:
            role = db_config.role.value
        if charset is None:
            charset = db_config.charset.value
        if charset:
            charset = charset.upper()
        if auth_plugin_list is None:
            auth_plugin_list = db_config.auth_plugin_list.value
        if session_time_zone is None:
            session_time_zone = db_config.session_time_zone.value
        dsn = _connect_helper(db_config.dsn.value, srv_config.host.value, srv_config.port.value,
                              database, db_config.protocol.value)
        dpb = DPB(user=user, password=password, role=role, trusted_auth=db_config.trusted_auth.value,
                  sql_dialect=db_config.sql_dialect.value, timeout=db_config.timeout.value,
                  charset=charset, cache_size=db_config.cache_size.value,
                  no_linger=db_config.no_linger.value, utf8filename=db_config.utf8filename.value,
                  no_gc=no_gc, no_db_triggers=no_db_triggers, dbkey_scope=dbkey_scope,
                  dummy_packet_interval=db_config.dummy_packet_interval.value,
                  config=db_config.config.value, auth_plugin_list=auth_plugin_list,
                  session_time_zone=session_time_zone, set_bind=db_config.set_bind.value,
                  decfloat_round=db_config.decfloat_round.value,
                  decfloat_traps=db_config.decfloat_traps.value,
                  parallel_workers=db_config.parallel_workers.value)
>       return __make_connection(False, dsn, db_config.utf8filename.value, dpb.get_buffer(),
                                 db_config.sql_dialect.value, charset, crypt_callback)

C:\Python3x\Lib\site-packages\firebird\driver\core.py: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 4.0.6.3215 2025.06.25 6461d P F 6542 2444 2025.06.26 08:10:02.033 2025.06.26 08:10:08.575 2025.06.26 07:00:59.113 2025.06.26 07:01:01.557
2 4.0.6.3214 2025.06.21 e11f6 P P 6568 6173 2025.06.25 12:49:07.820 2025.06.25 12:49:14.388 2025.06.25 11:47:11.790 2025.06.25 11:47:17.963
3 4.0.6.3213 2025.06.14 f015c P P 6535 6098 2025.06.21 07:49:44.071 2025.06.21 07:49:50.606 2025.06.21 06:47:32.433 2025.06.21 06:47:38.531
4 4.0.6.3212 2025.06.11 bc50d P P 5518 6089 2025.06.14 08:17:25.428 2025.06.14 08:17:30.946 2025.06.14 07:14:37.883 2025.06.14 07:14:43.972
5 4.0.6.3208 2025.06.10 19fe3 P P 6541 6172 2025.06.11 06:44:19.524 2025.06.11 06:44:26.065 2025.06.11 05:42:33.180 2025.06.11 05:42:39.352
6 4.0.6.3207 2025.06.07 205ff P P 5564 6194 2025.06.10 06:45:45.879 2025.06.10 06:45:51.443 2025.06.10 05:43:10.382 2025.06.10 05:43:16.576
7 4.0.6.3206 2025.05.22 d7d10 P P 5535 6191 2025.06.06 06:39:21.826 2025.06.06 06:39:27.361 2025.06.06 05:38:15.097 2025.06.06 05:38:21.288
8 4.0.6.3205 2025.05.07 00148 P P 5521 6029 2025.05.18 06:26:50.775 2025.05.18 06:26:56.296 2025.05.18 05:27:34.442 2025.05.18 05:27:40.471
9 4.0.6.3204 2025.05.06 35b85 P P 5590 6112 2025.05.07 06:35:05.932 2025.05.07 06:35:11.522 2025.05.07 05:34:25.835 2025.05.07 05:34:31.947
10 4.0.6.3203 2025.05.05 c2cbd P P 5560 6080 2025.05.06 06:35:23.152 2025.05.06 06:35:28.712 2025.05.06 05:34:33.499 2025.05.06 05:34:39.579
11 4.0.6.3200 2025.04.18 7ef56 P P 6511 6083 2025.04.26 06:39:56.225 2025.04.26 06:40:02.736 2025.04.26 05:38:49.450 2025.04.26 05:38:55.533
12 4.0.6.3199 2025.04.14 33a10 P P 7068 6084 2025.04.17 06:37:31.502 2025.04.17 06:37:38.570 2025.04.17 05:36:16.432 2025.04.17 05:36:22.516
13 4.0.6.3198 2025.04.13 64a7f P P 6535 6087 2025.04.14 06:35:45.919 2025.04.14 06:35:52.454 2025.04.14 05:34:36.297 2025.04.14 05:34:42.384
14 4.0.6.3195 2025.04.12 82cb5 P P 6419 6048 2025.04.13 06:20:36.338 2025.04.13 06:20:42.757 2025.04.13 05:21:52.696 2025.04.13 05:21:58.744
15 4.0.6.3195 2025.03.28 b9faf P P 6561 6068 2025.04.12 06:40:45.683 2025.04.12 06:40:52.244 2025.04.12 05:38:40.880 2025.04.12 05:38:46.948
16 4.0.6.3194 2025.03.27 ab754 P P 5589 6138 2025.03.28 06:53:20.351 2025.03.28 06:53:25.940 2025.03.28 05:50:48.548 2025.03.28 05:50:54.686
17 4.0.6.3194 2025.03.26 912aa P P 5612 6160 2025.03.27 06:43:40.164 2025.03.27 06:43:45.776 2025.03.27 05:39:51.291 2025.03.27 05:39:57.451
18 4.0.6.3193 2025.03.20 80234 P P 5737 6529 2025.03.24 06:44:06.556 2025.03.24 06:44:12.293 2025.03.24 05:40:01.117 2025.03.24 05:40:07.646
19 4.0.6.3192 2025.03.13 2a9da P P 6498 6092 2025.03.20 06:31:24.142 2025.03.20 06:31:30.640 2025.03.20 05:29:23.763 2025.03.20 05:29:29.855
20 4.0.6.3191 2025.03.10 3d9fd P P 6582 6136 2025.03.13 06:38:58.112 2025.03.13 06:39:04.694 2025.03.13 05:35:24.107 2025.03.13 05:35:30.243
21 4.0.6.3190 2025.02.25 c9928 P P 6510 6620 2025.03.09 06:35:45.804 2025.03.09 06:35:52.314 2025.03.09 05:32:21.895 2025.03.09 05:32:28.515
22 4.0.6.3189 2025.02.22 3fb0b P P 5588 6080 2025.02.25 06:24:41.755 2025.02.25 06:24:47.343 2025.02.25 05:22:56.573 2025.02.25 05:23:02.653
23 4.0.6.3188 2025.02.21 8ee1c P P 5504 6084 2025.02.22 06:18:19.359 2025.02.22 06:18:24.863 2025.02.22 05:16:57.949 2025.02.22 05:17:04.033
24 4.0.6.3186 2025.02.19 92cb6 P P 5549 6093 2025.02.20 04:16:05.578 2025.02.20 04:16:11.127 2025.02.20 03:14:06.470 2025.02.20 03:14:12.563
25 4.0.6.3185 2025.02.16 9cac4 P P 5498 6076 2025.02.17 02:03:23.824 2025.02.17 02:03:29.322 2025.02.17 01:02:12.749 2025.02.17 01:02:18.825
26 4.0.6.3183 2025.02.04 bf738 P P 5548 6115 2025.02.08 06:22:05.410 2025.02.08 06:22:10.958 2025.02.08 05:20:28.656 2025.02.08 05:20:34.771
27 4.0.6.3181 2025.02.01 00b64 P P 5527 6068 2025.02.04 06:35:36.173 2025.02.04 06:35:41.700 2025.02.04 05:33:51.093 2025.02.04 05:33:57.161
28 4.0.6.3180 2025.01.27 2edb8 P P 5576 6090 2025.01.28 06:18:40.630 2025.01.28 06:18:46.206 2025.01.28 05:17:40.531 2025.01.28 05:17:46.621
29 4.0.6.3179 2025.01.24 008d4 P P 5528 6093 2025.01.25 04:08:54.903 2025.01.25 04:09:00.431 2025.01.25 03:07:55.340 2025.01.25 03:08:01.433
30 4.0.6.3178 2025.01.20 ec94d P P 5514 6100 2025.01.24 06:19:24.023 2025.01.24 06:19:29.537 2025.01.24 05:18:14.964 2025.01.24 05:18:21.064
31 4.0.6.3176 2025.01.16 79cc1 P P 6559 6107 2025.01.20 06:18:08.621 2025.01.20 06:18:15.180 2025.01.20 05:17:03.976 2025.01.20 05:17:10.083
32 4.0.6.3175 2025.01.15 91361 P P 5574 6109 2025.01.16 06:21:56.841 2025.01.16 06:22:02.415 2025.01.16 05:20:29.020 2025.01.16 05:20:35.129
33 4.0.6.3174 2024.12.23 ffd39 P P 5565 6083 2025.01.15 06:15:26.201 2025.01.15 06:15:31.766 2025.01.15 05:13:57.578 2025.01.15 05:14:03.661
34 4.0.6.3173 2024.12.19 60b32 P P 5530 6130 2024.12.21 17:15:14.760 2024.12.21 17:15:20.290 2024.12.21 16:13:38.023 2024.12.21 16:13:44.153
35 4.0.6.3172 2024.12.11 33f5d P P 5557 6105 2024.12.16 06:17:28.662 2024.12.16 06:17:34.219 2024.12.16 05:16:18.224 2024.12.16 05:16:24.329
36 4.0.6.3171 2024.12.10 ab1d4 P P 5551 6090 2024.12.11 06:19:52.558 2024.12.11 06:19:58.109 2024.12.11 05:18:33.893 2024.12.11 05:18:39.983
37 4.0.6.3170 2024.12.02 68abd P P 6541 6085 2024.12.04 06:08:42.050 2024.12.04 06:08:48.591 2024.12.04 05:08:38.942 2024.12.04 05:08:45.027
38 4.0.6.3169 2024.11.28 1673f P P 5508 7092 2024.11.30 06:06:42.266 2024.11.30 06:06:47.774 2024.11.30 05:06:43.614 2024.11.30 05:06:50.706
39 4.0.6.3168 2024.11.27 7fffc P P 5549 5104 2024.11.28 06:02:38.845 2024.11.28 06:02:44.394 2024.11.28 05:03:23.620 2024.11.28 05:03:28.724
40 4.0.6.3168 2024.11.07 f67e2 P P 6570 6115 2024.11.27 06:05:07.501 2024.11.27 06:05:14.071 2024.11.27 05:05:03.845 2024.11.27 05:05:09.960
41 4.0.6.3167 2024.11.04 c9228 P P 5557 6096 2024.11.05 05:58:00.688 2024.11.05 05:58:06.245 2024.11.05 04:59:00.632 2024.11.05 04:59:06.728
42 4.0.6.3165 2024.10.23 b0c36 P P 6554 6111 2024.11.04 11:47:47.116 2024.11.04 11:47:53.670 2024.11.04 10:48:40.021 2024.11.04 10:48:46.132
43 4.0.6.3164 2024.10.17 35344 P P 6532 6085 2024.10.23 06:07:12.156 2024.10.23 06:07:18.688 2024.10.23 05:07:26.563 2024.10.23 05:07:32.648
44 4.0.6.3161 2024.10.05 91502 P P 5564 6087 2024.10.15 06:04:24.052 2024.10.15 06:04:29.616 2024.10.15 05:05:04.866 2024.10.15 05:05:10.953
45 4.0.6.3159 2024.10.01 85136 P P 6538 6254 2024.10.05 06:08:18.915 2024.10.05 06:08:25.453 2024.10.05 05:07:53.702 2024.10.05 05:07:59.956
46 4.0.6.3158 2024.09.30 14c68 P P 5538 7092 2024.10.01 06:06:29.184 2024.10.01 06:06:34.722 2024.10.01 05:06:10.087 2024.10.01 05:06:17.179
47 4.0.6.3157 2024.09.24 3bb2e P P 5638 6100 2024.09.30 06:06:01.662 2024.09.30 06:06:07.300 2024.09.30 05:06:08.568 2024.09.30 05:06:14.668
48 4.0.6.3156 2024.09.21 f6416 P P 5540 6115 2024.09.24 06:05:27.824 2024.09.24 06:05:33.364 2024.09.24 05:05:37.365 2024.09.24 05:05:43.480
49 4.0.6.3155 2024.09.20 1ed0c P P 6557 6084 2024.09.21 06:06:57.812 2024.09.21 06:07:04.369 2024.09.21 05:06:46.886 2024.09.21 05:06:52.970
50 4.0.6.3151 2024.09.09 1b77f P P 6521 7144 2024.09.17 06:04:14.500 2024.09.17 06:04:21.021 2024.09.17 05:05:05.131 2024.09.17 05:05:12.275
51 4.0.6.3149 2024.09.04 32ce9 P P 6592 6082 2024.09.08 04:05:10.556 2024.09.08 04:05:17.148 2024.09.08 03:05:07.666 2024.09.08 03:05:13.748
52 4.0.6.3148 2024.09.02 4be5c P P 5581 6105 2024.09.04 06:07:49.137 2024.09.04 06:07:54.718 2024.09.04 05:07:20.530 2024.09.04 05:07:26.635
53 4.0.6.3147 2024.08.30 5ffd7 P P 5559 6103 2024.09.02 05:57:14.152 2024.09.02 05:57:19.711 2024.09.02 04:57:02.363 2024.09.02 04:57:08.466
54 4.0.6.3146 2024.08.27 38582 P P 6518 6078 2024.08.30 05:52:07.288 2024.08.30 05:52:13.806 2024.08.30 04:51:56.044 2024.08.30 04:52:02.122
55 4.0.6.3145 2024.08.21 87240 P P 5557 7084 2024.08.27 05:47:14.467 2024.08.27 05:47:20.024 2024.08.27 04:47:11.485 2024.08.27 04:47:18.569
56 4.0.6.3144 2024.08.20 5a3b7 P P 5677 6083 2024.08.21 05:45:06.928 2024.08.21 05:45:12.605 2024.08.21 04:44:46.870 2024.08.21 04:44:52.953
57 4.0.6.3142 2024.08.11 b9f39 P P 5601 6082 2024.08.19 05:55:12.829 2024.08.19 05:55:18.430 2024.08.19 04:53:04.122 2024.08.19 04:53:10.204
58 4.0.6.3141 2024.08.09 6d39f P P 5641 6084 2024.08.11 03:49:09.263 2024.08.11 03:49:14.904 2024.08.11 02:46:38.168 2024.08.11 02:46:44.252
59 4.0.5.3140 2024.08.06 64f3a P P 6085 6080 2024.08.10 21:36:06.475 2024.08.10 21:36:12.560 2024.08.10 20:30:01.556 2024.08.10 20:30:07.636
60 4.0.5.3139 2024.08.01 3bc8b P P 5971 6087 2024.08.06 03:40:33.678 2024.08.06 03:40:39.649 2024.08.06 02:43:01.159 2024.08.06 02:43:07.246
61 4.0.5.3136 2024.07.31 e41ec P P 5783 6076 2024.08.01 12:12:17.415 2024.08.01 12:12:23.198 2024.08.01 11:16:51.381 2024.08.01 11:16:57.457
62 4.0.5.3135 2024.07.26 b4981 P P 6632 7100 2024.07.30 05:21:14.722 2024.07.30 05:21:21.354 2024.07.30 04:26:00.816 2024.07.30 04:26:07.916
63 4.0.5.3129 2024.07.24 b8184 P P 6667 6097 2024.07.25 05:20:55.848 2024.07.25 05:21:02.515 2024.07.25 04:25:39.913 2024.07.25 04:25:46.010
64 4.0.5.3128 2024.07.13 aa318 P P 5648 6088 2024.07.24 05:47:57.139 2024.07.24 05:48:02.787 2024.07.24 04:52:28.937 2024.07.24 04:52:35.025
65 4.0.5.3127 2024.07.10 eace3 P P 6524 5995 2024.07.13 05:17:30.026 2024.07.13 05:17:36.550 2024.07.13 04:22:59.467 2024.07.13 04:23:05.462
66 4.0.5.3123 2024.07.09 070ee P P 5630 6110 2024.07.10 05:32:09.550 2024.07.10 05:32:15.180 2024.07.10 04:35:21.212 2024.07.10 04:35:27.322
67 4.0.5.3123 2024.06.24 c27c6 P P 5600 6079 2024.07.09 05:31:28.210 2024.07.09 05:31:33.810 2024.07.09 04:34:00.077 2024.07.09 04:34:06.156
68 4.0.5.3112 2024.06.13 d2e61 P P 5621 6334 2024.06.21 22:06:15.587 2024.06.21 22:06:21.208 2024.06.21 21:05:54.568 2024.06.21 21:06:00.902
69 4.0.5.3109 2024.06.12 de9c0 P P 5704 6110 2024.06.13 02:58:23.179 2024.06.13 02:58:28.883 2024.06.13 02:07:13.451 2024.06.13 02:07:19.561
70 4.0.5.3109 2024.06.09 569cf P P 5703 6079 2024.06.11 02:58:41.085 2024.06.11 02:58:46.788 2024.06.11 02:07:25.622 2024.06.11 02:07:31.701
71 4.0.5.3103 2024.05.24 61480 P P 6672 6079 2024.05.25 02:55:35.125 2024.05.25 02:55:41.797 2024.05.25 02:04:49.894 2024.05.25 02:04:55.973
72 4.0.5.3100 2024.05.15 2dc0d P P 6658 7079 2024.05.24 02:58:00.329 2024.05.24 02:58:06.987 2024.05.24 02:06:20.108 2024.05.24 02:06:27.187
73 4.0.5.3098 2024.05.09 4c3ec P P 6642 7080 2024.05.15 02:54:01.800 2024.05.15 02:54:08.442 2024.05.15 02:03:25.959 2024.05.15 02:03:33.039
74 4.0.5.3097 2024.05.08 ec699 P P 6688 6064 2024.05.09 14:41:54.163 2024.05.09 14:42:00.851 2024.05.09 13:51:16.340 2024.05.09 13:51:22.404
75 4.0.5.3092 2024.05.06 bbc47 P P 6673 6063 2024.05.08 02:54:34.295 2024.05.08 02:54:40.968 2024.05.08 02:04:02.955 2024.05.08 02:04:09.018
76 4.0.5.3091 2024.04.29 062a7 P P 6672 6063 2024.04.30 02:52:21.406 2024.04.30 02:52:28.078 2024.04.30 02:02:08.754 2024.04.30 02:02:14.817
77 4.0.5.3089 2024.04.19 08c92 P P 6657 6063 2024.04.29 02:52:42.241 2024.04.29 02:52:48.898 2024.04.29 02:02:17.100 2024.04.29 02:02:23.163
78 4.0.5.3088 2024.04.17 c4484 P P 6657 7078 2024.04.19 02:52:45.785 2024.04.19 02:52:52.442 2024.04.19 02:02:02.875 2024.04.19 02:02:09.953
79 4.0.5.3086 2024.04.16 434ab P P 6673 6064 2024.04.17 02:49:44.065 2024.04.17 02:49:50.738 2024.04.17 01:59:38.410 2024.04.17 01:59:44.474
80 4.0.5.3083 2024.03.31 6ee48 P P 6657 6079 2024.04.13 02:45:09.651 2024.04.13 02:45:16.308 2024.04.13 01:55:14.159 2024.04.13 01:55:20.238
81 4.0.5.3082 2024.03.31 c768b P P 6360 6907 2024.04.04 14:21:51.891 2024.04.04 14:21:58.251 2024.04.04 13:35:14.207 2024.04.04 13:35:21.114
82 4.0.5.3082 2024.03.25 af9dc P P 6656 6000 2024.03.29 02:02:15.110 2024.03.29 02:02:21.766 2024.03.29 01:13:33.751 2024.03.29 01:13:39.751
83 4.0.5.3081 2024.03.22 17cd2 P P 6656 6031 2024.03.24 03:36:46.694 2024.03.24 03:36:53.350 2024.03.24 02:47:02.014 2024.03.24 02:47:08.045
84 4.0.5.3080 2024.03.22 5d44e P P 6343 5906 2024.03.22 16:21:33.960 2024.03.22 16:21:40.303 2024.03.22 15:34:37.158 2024.03.22 15:34:43.064
85 4.0.5.3080 2024.03.17 17edd P P 6343 6906 2024.03.20 19:48:43.251 2024.03.20 19:48:49.594 2024.03.20 19:01:49.350 2024.03.20 19:01:56.256

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):