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

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 6578 2242 2025.06.26 08:09:55.455 2025.06.26 08:10:02.033 2025.06.26 07:00:56.871 2025.06.26 07:00:59.113
2 4.0.6.3214 2025.06.21 e11f6 P P 6574 6403 2025.06.25 12:49:01.246 2025.06.25 12:49:07.820 2025.06.25 11:47:05.387 2025.06.25 11:47:11.790
3 4.0.6.3213 2025.06.14 f015c P P 6534 6082 2025.06.21 07:49:37.537 2025.06.21 07:49:44.071 2025.06.21 06:47:26.351 2025.06.21 06:47:32.433
4 4.0.6.3212 2025.06.11 bc50d P P 6693 6095 2025.06.14 08:17:18.735 2025.06.14 08:17:25.428 2025.06.14 07:14:31.788 2025.06.14 07:14:37.883
5 4.0.6.3208 2025.06.10 19fe3 P P 6542 6547 2025.06.11 06:44:12.982 2025.06.11 06:44:19.524 2025.06.11 05:42:26.633 2025.06.11 05:42:33.180
6 4.0.6.3207 2025.06.07 205ff P P 6553 6159 2025.06.10 06:45:39.326 2025.06.10 06:45:45.879 2025.06.10 05:43:04.223 2025.06.10 05:43:10.382
7 4.0.6.3206 2025.05.22 d7d10 P P 6563 6120 2025.06.06 06:39:15.263 2025.06.06 06:39:21.826 2025.06.06 05:38:08.977 2025.06.06 05:38:15.097
8 4.0.6.3205 2025.05.07 00148 P P 6540 6065 2025.05.18 06:26:44.235 2025.05.18 06:26:50.775 2025.05.18 05:27:28.377 2025.05.18 05:27:34.442
9 4.0.6.3204 2025.05.06 35b85 P P 6593 6105 2025.05.07 06:34:59.339 2025.05.07 06:35:05.932 2025.05.07 05:34:19.730 2025.05.07 05:34:25.835
10 4.0.6.3203 2025.05.05 c2cbd P P 6536 6094 2025.05.06 06:35:16.616 2025.05.06 06:35:23.152 2025.05.06 05:34:27.405 2025.05.06 05:34:33.499
11 4.0.6.3200 2025.04.18 7ef56 P P 6511 6099 2025.04.26 06:39:49.714 2025.04.26 06:39:56.225 2025.04.26 05:38:43.351 2025.04.26 05:38:49.450
12 4.0.6.3199 2025.04.14 33a10 P P 6563 6087 2025.04.17 06:37:24.939 2025.04.17 06:37:31.502 2025.04.17 05:36:10.345 2025.04.17 05:36:16.432
13 4.0.6.3198 2025.04.13 64a7f P P 6589 6119 2025.04.14 06:35:39.330 2025.04.14 06:35:45.919 2025.04.14 05:34:30.178 2025.04.14 05:34:36.297
14 4.0.6.3195 2025.04.12 82cb5 P P 6470 6047 2025.04.13 06:20:29.868 2025.04.13 06:20:36.338 2025.04.13 05:21:46.649 2025.04.13 05:21:52.696
15 4.0.6.3195 2025.03.28 b9faf P P 6569 6121 2025.04.12 06:40:39.114 2025.04.12 06:40:45.683 2025.04.12 05:38:34.759 2025.04.12 05:38:40.880
16 4.0.6.3194 2025.03.27 ab754 P P 6584 6143 2025.03.28 06:53:13.767 2025.03.28 06:53:20.351 2025.03.28 05:50:42.405 2025.03.28 05:50:48.548
17 4.0.6.3194 2025.03.26 912aa P P 6631 6762 2025.03.27 06:43:33.533 2025.03.27 06:43:40.164 2025.03.27 05:39:44.529 2025.03.27 05:39:51.291
18 4.0.6.3193 2025.03.20 80234 P P 6684 6270 2025.03.24 06:43:59.872 2025.03.24 06:44:06.556 2025.03.24 05:39:54.847 2025.03.24 05:40:01.117
19 4.0.6.3192 2025.03.13 2a9da P P 6530 6109 2025.03.20 06:31:17.612 2025.03.20 06:31:24.142 2025.03.20 05:29:17.654 2025.03.20 05:29:23.763
20 4.0.6.3191 2025.03.10 3d9fd P P 6650 6139 2025.03.13 06:38:51.462 2025.03.13 06:38:58.112 2025.03.13 05:35:17.968 2025.03.13 05:35:24.107
21 4.0.6.3190 2025.02.25 c9928 P P 6524 6162 2025.03.09 06:35:39.280 2025.03.09 06:35:45.804 2025.03.09 05:32:15.733 2025.03.09 05:32:21.895
22 4.0.6.3189 2025.02.22 3fb0b P P 6551 6072 2025.02.25 06:24:35.204 2025.02.25 06:24:41.755 2025.02.25 05:22:50.501 2025.02.25 05:22:56.573
23 4.0.6.3188 2025.02.21 8ee1c P P 6554 6089 2025.02.22 06:18:12.805 2025.02.22 06:18:19.359 2025.02.22 05:16:51.860 2025.02.22 05:16:57.949
24 4.0.6.3186 2025.02.19 92cb6 P P 6574 6094 2025.02.20 04:15:59.004 2025.02.20 04:16:05.578 2025.02.20 03:14:00.376 2025.02.20 03:14:06.470
25 4.0.6.3185 2025.02.16 9cac4 P P 6554 6112 2025.02.17 02:03:17.270 2025.02.17 02:03:23.824 2025.02.17 01:02:06.637 2025.02.17 01:02:12.749
26 4.0.6.3183 2025.02.04 bf738 P P 6536 6117 2025.02.08 06:21:58.874 2025.02.08 06:22:05.410 2025.02.08 05:20:22.539 2025.02.08 05:20:28.656
27 4.0.6.3181 2025.02.01 00b64 P P 6557 6085 2025.02.04 06:35:29.616 2025.02.04 06:35:36.173 2025.02.04 05:33:45.008 2025.02.04 05:33:51.093
28 4.0.6.3180 2025.01.27 2edb8 P P 6548 6089 2025.01.28 06:18:34.082 2025.01.28 06:18:40.630 2025.01.28 05:17:34.442 2025.01.28 05:17:40.531
29 4.0.6.3179 2025.01.24 008d4 P P 6540 6085 2025.01.25 04:08:48.363 2025.01.25 04:08:54.903 2025.01.25 03:07:49.255 2025.01.25 03:07:55.340
30 4.0.6.3178 2025.01.20 ec94d P P 6497 6101 2025.01.24 06:19:17.526 2025.01.24 06:19:24.023 2025.01.24 05:18:08.863 2025.01.24 05:18:14.964
31 4.0.6.3176 2025.01.16 79cc1 P P 6561 6094 2025.01.20 06:18:02.060 2025.01.20 06:18:08.621 2025.01.20 05:16:57.882 2025.01.20 05:17:03.976
32 4.0.6.3175 2025.01.15 91361 P P 6545 6139 2025.01.16 06:21:50.296 2025.01.16 06:21:56.841 2025.01.16 05:20:22.881 2025.01.16 05:20:29.020
33 4.0.6.3174 2024.12.23 ffd39 P P 6617 6086 2025.01.15 06:15:19.584 2025.01.15 06:15:26.201 2025.01.15 05:13:51.492 2025.01.15 05:13:57.578
34 4.0.6.3173 2024.12.19 60b32 P P 6513 6177 2024.12.21 17:15:08.247 2024.12.21 17:15:14.760 2024.12.21 16:13:31.846 2024.12.21 16:13:38.023
35 4.0.6.3172 2024.12.11 33f5d P P 6603 6147 2024.12.16 06:17:22.059 2024.12.16 06:17:28.662 2024.12.16 05:16:12.077 2024.12.16 05:16:18.224
36 4.0.6.3171 2024.12.10 ab1d4 P P 6574 6117 2024.12.11 06:19:45.984 2024.12.11 06:19:52.558 2024.12.11 05:18:27.776 2024.12.11 05:18:33.893
37 4.0.6.3170 2024.12.02 68abd P P 6601 7107 2024.12.04 06:08:35.449 2024.12.04 06:08:42.050 2024.12.04 05:08:31.835 2024.12.04 05:08:38.942
38 4.0.6.3169 2024.11.28 1673f P P 6562 6116 2024.11.30 06:06:35.704 2024.11.30 06:06:42.266 2024.11.30 05:06:37.498 2024.11.30 05:06:43.614
39 4.0.6.3168 2024.11.27 7fffc P P 7578 7111 2024.11.28 06:02:31.267 2024.11.28 06:02:38.845 2024.11.28 05:03:16.509 2024.11.28 05:03:23.620
40 4.0.6.3168 2024.11.07 f67e2 P P 6560 6112 2024.11.27 06:05:00.941 2024.11.27 06:05:07.501 2024.11.27 05:04:57.733 2024.11.27 05:05:03.845
41 4.0.6.3167 2024.11.04 c9228 P P 6540 7112 2024.11.05 05:57:54.148 2024.11.05 05:58:00.688 2024.11.05 04:58:53.520 2024.11.05 04:59:00.632
42 4.0.6.3165 2024.10.23 b0c36 P P 6565 6142 2024.11.04 11:47:40.551 2024.11.04 11:47:47.116 2024.11.04 10:48:33.879 2024.11.04 10:48:40.021
43 4.0.6.3164 2024.10.17 35344 P P 6524 7123 2024.10.23 06:07:05.632 2024.10.23 06:07:12.156 2024.10.23 05:07:19.440 2024.10.23 05:07:26.563
44 4.0.6.3161 2024.10.05 91502 P P 6568 7110 2024.10.15 06:04:17.484 2024.10.15 06:04:24.052 2024.10.15 05:04:57.756 2024.10.15 05:05:04.866
45 4.0.6.3159 2024.10.01 85136 P P 6580 7176 2024.10.05 06:08:12.335 2024.10.05 06:08:18.915 2024.10.05 05:07:46.526 2024.10.05 05:07:53.702
46 4.0.6.3158 2024.09.30 14c68 P P 6648 6110 2024.10.01 06:06:22.536 2024.10.01 06:06:29.184 2024.10.01 05:06:03.977 2024.10.01 05:06:10.087
47 4.0.6.3157 2024.09.24 3bb2e P P 6618 6127 2024.09.30 06:05:55.044 2024.09.30 06:06:01.662 2024.09.30 05:06:02.441 2024.09.30 05:06:08.568
48 4.0.6.3156 2024.09.21 f6416 P P 6558 6118 2024.09.24 06:05:21.266 2024.09.24 06:05:27.824 2024.09.24 05:05:31.247 2024.09.24 05:05:37.365
49 4.0.6.3155 2024.09.20 1ed0c P P 6537 6098 2024.09.21 06:06:51.275 2024.09.21 06:06:57.812 2024.09.21 05:06:40.788 2024.09.21 05:06:46.886
50 4.0.6.3151 2024.09.09 1b77f P P 6557 6187 2024.09.17 06:04:07.943 2024.09.17 06:04:14.500 2024.09.17 05:04:58.944 2024.09.17 05:05:05.131
51 4.0.6.3149 2024.09.04 32ce9 P P 6548 7117 2024.09.08 04:05:04.008 2024.09.08 04:05:10.556 2024.09.08 03:05:00.549 2024.09.08 03:05:07.666
52 4.0.6.3148 2024.09.02 4be5c P P 6531 7090 2024.09.04 06:07:42.606 2024.09.04 06:07:49.137 2024.09.04 05:07:13.440 2024.09.04 05:07:20.530
53 4.0.6.3147 2024.08.30 5ffd7 P P 6576 7175 2024.09.02 05:57:07.576 2024.09.02 05:57:14.152 2024.09.02 04:56:55.188 2024.09.02 04:57:02.363
54 4.0.6.3146 2024.08.27 38582 P P 6614 6127 2024.08.30 05:52:00.674 2024.08.30 05:52:07.288 2024.08.30 04:51:49.917 2024.08.30 04:51:56.044
55 4.0.6.3145 2024.08.21 87240 P P 6527 6098 2024.08.27 05:47:07.940 2024.08.27 05:47:14.467 2024.08.27 04:47:05.387 2024.08.27 04:47:11.485
56 4.0.6.3144 2024.08.20 5a3b7 P P 6709 7113 2024.08.21 05:45:00.219 2024.08.21 05:45:06.928 2024.08.21 04:44:39.757 2024.08.21 04:44:46.870
57 4.0.6.3142 2024.08.11 b9f39 P P 6671 6087 2024.08.19 05:55:06.158 2024.08.19 05:55:12.829 2024.08.19 04:52:58.035 2024.08.19 04:53:04.122
58 4.0.6.3141 2024.08.09 6d39f P P 6674 7103 2024.08.11 03:49:02.589 2024.08.11 03:49:09.263 2024.08.11 02:46:31.065 2024.08.11 02:46:38.168
59 4.0.5.3140 2024.08.06 64f3a P P 6792 7126 2024.08.10 21:35:59.683 2024.08.10 21:36:06.475 2024.08.10 20:29:54.430 2024.08.10 20:30:01.556
60 4.0.5.3139 2024.08.01 3bc8b P P 6853 7105 2024.08.06 03:40:26.825 2024.08.06 03:40:33.678 2024.08.06 02:42:54.054 2024.08.06 02:43:01.159
61 4.0.5.3136 2024.07.31 e41ec P P 6770 7132 2024.08.01 12:12:10.645 2024.08.01 12:12:17.415 2024.08.01 11:16:44.249 2024.08.01 11:16:51.381
62 4.0.5.3135 2024.07.26 b4981 P P 6631 6096 2024.07.30 05:21:08.091 2024.07.30 05:21:14.722 2024.07.30 04:25:54.720 2024.07.30 04:26:00.816
63 4.0.5.3129 2024.07.24 b8184 P P 6675 7115 2024.07.25 05:20:49.173 2024.07.25 05:20:55.848 2024.07.25 04:25:32.798 2024.07.25 04:25:39.913
64 4.0.5.3128 2024.07.13 aa318 P P 6647 6091 2024.07.24 05:47:50.492 2024.07.24 05:47:57.139 2024.07.24 04:52:22.846 2024.07.24 04:52:28.937
65 4.0.5.3127 2024.07.10 eace3 P P 6491 7044 2024.07.13 05:17:23.535 2024.07.13 05:17:30.026 2024.07.13 04:22:52.423 2024.07.13 04:22:59.467
66 4.0.5.3123 2024.07.09 070ee P P 6645 6096 2024.07.10 05:32:02.905 2024.07.10 05:32:09.550 2024.07.10 04:35:15.116 2024.07.10 04:35:21.212
67 4.0.5.3123 2024.06.24 c27c6 P P 6623 6099 2024.07.09 05:31:21.587 2024.07.09 05:31:28.210 2024.07.09 04:33:53.978 2024.07.09 04:34:00.077
68 4.0.5.3112 2024.06.13 d2e61 P P 6781 6525 2024.06.21 22:06:08.806 2024.06.21 22:06:15.587 2024.06.21 21:05:48.043 2024.06.21 21:05:54.568
69 4.0.5.3109 2024.06.12 de9c0 P P 6782 7110 2024.06.13 02:58:16.397 2024.06.13 02:58:23.179 2024.06.13 02:07:06.341 2024.06.13 02:07:13.451
70 4.0.5.3109 2024.06.09 569cf P P 6704 7095 2024.06.11 02:58:34.381 2024.06.11 02:58:41.085 2024.06.11 02:07:18.527 2024.06.11 02:07:25.622
71 4.0.5.3103 2024.05.24 61480 P P 6688 7094 2024.05.25 02:55:28.437 2024.05.25 02:55:35.125 2024.05.25 02:04:42.800 2024.05.25 02:04:49.894
72 4.0.5.3100 2024.05.15 2dc0d P P 7641 6189 2024.05.24 02:57:52.688 2024.05.24 02:58:00.329 2024.05.24 02:06:13.919 2024.05.24 02:06:20.108
73 4.0.5.3098 2024.05.09 4c3ec P P 6751 6157 2024.05.15 02:53:55.049 2024.05.15 02:54:01.800 2024.05.15 02:03:19.802 2024.05.15 02:03:25.959
74 4.0.5.3097 2024.05.08 ec699 P P 6658 7110 2024.05.09 14:41:47.505 2024.05.09 14:41:54.163 2024.05.09 13:51:09.230 2024.05.09 13:51:16.340
75 4.0.5.3092 2024.05.06 bbc47 P P 6688 7110 2024.05.08 02:54:27.607 2024.05.08 02:54:34.295 2024.05.08 02:03:55.845 2024.05.08 02:04:02.955
76 4.0.5.3091 2024.04.29 062a7 P P 6689 7079 2024.04.30 02:52:14.717 2024.04.30 02:52:21.406 2024.04.30 02:02:01.675 2024.04.30 02:02:08.754
77 4.0.5.3089 2024.04.19 08c92 P P 6688 7110 2024.04.29 02:52:35.553 2024.04.29 02:52:42.241 2024.04.29 02:02:09.990 2024.04.29 02:02:17.100
78 4.0.5.3088 2024.04.17 c4484 P P 6625 6142 2024.04.19 02:52:39.160 2024.04.19 02:52:45.785 2024.04.19 02:01:56.733 2024.04.19 02:02:02.875
79 4.0.5.3086 2024.04.16 434ab P P 6688 7095 2024.04.17 02:49:37.377 2024.04.17 02:49:44.065 2024.04.17 01:59:31.315 2024.04.17 01:59:38.410
80 4.0.5.3083 2024.03.31 6ee48 P P 6688 7095 2024.04.13 02:45:02.963 2024.04.13 02:45:09.651 2024.04.13 01:55:07.064 2024.04.13 01:55:14.159
81 4.0.5.3082 2024.03.31 c768b P P 6360 5923 2024.04.04 14:21:45.531 2024.04.04 14:21:51.891 2024.04.04 13:35:08.284 2024.04.04 13:35:14.207
82 4.0.5.3082 2024.03.25 af9dc P P 6687 7047 2024.03.29 02:02:08.422 2024.03.29 02:02:15.109 2024.03.29 01:13:26.703 2024.03.29 01:13:33.750
83 4.0.5.3081 2024.03.22 17cd2 P P 6671 7047 2024.03.24 03:36:40.022 2024.03.24 03:36:46.693 2024.03.24 02:46:54.966 2024.03.24 02:47:02.013
84 4.0.5.3080 2024.03.22 5d44e P P 6375 6906 2024.03.22 16:21:27.584 2024.03.22 16:21:33.959 2024.03.22 15:34:30.251 2024.03.22 15:34:37.157
85 4.0.5.3080 2024.03.17 17edd P P 6359 5906 2024.03.20 19:48:36.891 2024.03.20 19:48:43.250 2024.03.20 19:01:43.443 2024.03.20 19:01:49.349

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):