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

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

tests\functional\replication\test_shutdown_during_applying_segments_leads_to_crash.py:397: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

database = 'db_main_alias'

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

C:\Python3x\Lib\site-packages\firebird\driver\core.py: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 13991 2479 2025.06.26 08:09:41.464 2025.06.26 08:09:55.455 2025.06.26 07:00:54.392 2025.06.26 07:00:56.871
2 4.0.6.3214 2025.06.21 e11f6 P P 13629 13802 2025.06.25 12:48:47.617 2025.06.25 12:49:01.246 2025.06.25 11:46:51.585 2025.06.25 11:47:05.387
3 4.0.6.3213 2025.06.14 f015c P P 13778 13739 2025.06.21 07:49:23.759 2025.06.21 07:49:37.537 2025.06.21 06:47:12.612 2025.06.21 06:47:26.351
4 4.0.6.3212 2025.06.11 bc50d P P 13789 13529 2025.06.14 08:17:04.946 2025.06.14 08:17:18.735 2025.06.14 07:14:18.259 2025.06.14 07:14:31.788
5 4.0.6.3208 2025.06.10 19fe3 P P 13802 13714 2025.06.11 06:43:59.180 2025.06.11 06:44:12.982 2025.06.11 05:42:12.919 2025.06.11 05:42:26.633
6 4.0.6.3207 2025.06.07 205ff P P 13420 13181 2025.06.10 06:45:25.906 2025.06.10 06:45:39.326 2025.06.10 05:42:51.042 2025.06.10 05:43:04.223
7 4.0.6.3206 2025.05.22 d7d10 P P 14358 14178 2025.06.06 06:39:00.905 2025.06.06 06:39:15.263 2025.06.06 05:37:54.799 2025.06.06 05:38:08.977
8 4.0.6.3205 2025.05.07 00148 P P 13406 13858 2025.05.18 06:26:30.829 2025.05.18 06:26:44.235 2025.05.18 05:27:14.519 2025.05.18 05:27:28.377
9 4.0.6.3204 2025.05.06 35b85 P P 13987 13075 2025.05.07 06:34:45.352 2025.05.07 06:34:59.339 2025.05.07 05:34:06.655 2025.05.07 05:34:19.730
10 4.0.6.3203 2025.05.05 c2cbd P P 13929 13337 2025.05.06 06:35:02.687 2025.05.06 06:35:16.616 2025.05.06 05:34:14.068 2025.05.06 05:34:27.405
11 4.0.6.3200 2025.04.18 7ef56 P P 14016 14113 2025.04.26 06:39:35.698 2025.04.26 06:39:49.714 2025.04.26 05:38:29.238 2025.04.26 05:38:43.351
12 4.0.6.3199 2025.04.14 33a10 P P 13509 13703 2025.04.17 06:37:11.430 2025.04.17 06:37:24.939 2025.04.17 05:35:56.642 2025.04.17 05:36:10.345
13 4.0.6.3198 2025.04.13 64a7f P P 14148 13057 2025.04.14 06:35:25.182 2025.04.14 06:35:39.330 2025.04.14 05:34:17.121 2025.04.14 05:34:30.178
14 4.0.6.3195 2025.04.12 82cb5 P P 13257 12822 2025.04.13 06:20:16.611 2025.04.13 06:20:29.868 2025.04.13 05:21:33.827 2025.04.13 05:21:46.649
15 4.0.6.3195 2025.03.28 b9faf P P 14223 12886 2025.04.12 06:40:24.891 2025.04.12 06:40:39.114 2025.04.12 05:38:21.873 2025.04.12 05:38:34.759
16 4.0.6.3194 2025.03.27 ab754 P P 13365 13581 2025.03.28 06:53:00.402 2025.03.28 06:53:13.767 2025.03.28 05:50:28.824 2025.03.28 05:50:42.405
17 4.0.6.3194 2025.03.26 912aa P P 13430 13876 2025.03.27 06:43:20.103 2025.03.27 06:43:33.533 2025.03.27 05:39:30.653 2025.03.27 05:39:44.529
18 4.0.6.3193 2025.03.20 80234 P P 13341 13397 2025.03.24 06:43:46.531 2025.03.24 06:43:59.872 2025.03.24 05:39:41.450 2025.03.24 05:39:54.847
19 4.0.6.3192 2025.03.13 2a9da P P 13777 13500 2025.03.20 06:31:03.835 2025.03.20 06:31:17.612 2025.03.20 05:29:04.154 2025.03.20 05:29:17.654
20 4.0.6.3191 2025.03.10 3d9fd P P 13413 13544 2025.03.13 06:38:38.049 2025.03.13 06:38:51.462 2025.03.13 05:35:04.424 2025.03.13 05:35:17.968
21 4.0.6.3190 2025.02.25 c9928 P P 13654 13826 2025.03.09 06:35:25.626 2025.03.09 06:35:39.280 2025.03.09 05:32:01.907 2025.03.09 05:32:15.733
22 4.0.6.3189 2025.02.22 3fb0b P P 13657 13212 2025.02.25 06:24:21.547 2025.02.25 06:24:35.204 2025.02.25 05:22:37.289 2025.02.25 05:22:50.501
23 4.0.6.3188 2025.02.21 8ee1c P P 14274 13598 2025.02.22 06:17:58.531 2025.02.22 06:18:12.805 2025.02.22 05:16:38.262 2025.02.22 05:16:51.860
24 4.0.6.3186 2025.02.19 92cb6 P P 13629 13824 2025.02.20 04:15:45.375 2025.02.20 04:15:59.004 2025.02.20 03:13:46.552 2025.02.20 03:14:00.376
25 4.0.6.3185 2025.02.16 9cac4 P P 13871 13793 2025.02.17 02:03:03.399 2025.02.17 02:03:17.270 2025.02.17 01:01:52.844 2025.02.17 01:02:06.637
26 4.0.6.3183 2025.02.04 bf738 P P 14735 14211 2025.02.08 06:21:44.139 2025.02.08 06:21:58.874 2025.02.08 05:20:08.328 2025.02.08 05:20:22.539
27 4.0.6.3181 2025.02.01 00b64 P P 14293 13129 2025.02.04 06:35:15.323 2025.02.04 06:35:29.616 2025.02.04 05:33:31.879 2025.02.04 05:33:45.008
28 4.0.6.3180 2025.01.27 2edb8 P P 13694 13210 2025.01.28 06:18:20.388 2025.01.28 06:18:34.082 2025.01.28 05:17:21.232 2025.01.28 05:17:34.442
29 4.0.6.3179 2025.01.24 008d4 P P 13654 13753 2025.01.25 04:08:34.709 2025.01.25 04:08:48.363 2025.01.25 03:07:35.502 2025.01.25 03:07:49.255
30 4.0.6.3178 2025.01.20 ec94d P P 13914 13597 2025.01.24 06:19:03.612 2025.01.24 06:19:17.526 2025.01.24 05:17:55.266 2025.01.24 05:18:08.863
31 4.0.6.3176 2025.01.16 79cc1 P P 14490 13610 2025.01.20 06:17:47.570 2025.01.20 06:18:02.060 2025.01.20 05:16:44.272 2025.01.20 05:16:57.882
32 4.0.6.3175 2025.01.15 91361 P P 14528 13503 2025.01.16 06:21:35.768 2025.01.16 06:21:50.296 2025.01.16 05:20:09.378 2025.01.16 05:20:22.881
33 4.0.6.3174 2024.12.23 ffd39 P P 13891 13601 2025.01.15 06:15:05.693 2025.01.15 06:15:19.584 2025.01.15 05:13:37.891 2025.01.15 05:13:51.492
34 4.0.6.3173 2024.12.19 60b32 P P 14217 13905 2024.12.21 17:14:54.030 2024.12.21 17:15:08.247 2024.12.21 16:13:17.941 2024.12.21 16:13:31.846
35 4.0.6.3172 2024.12.11 33f5d P P 13669 13150 2024.12.16 06:17:08.390 2024.12.16 06:17:22.059 2024.12.16 05:15:58.927 2024.12.16 05:16:12.077
36 4.0.6.3171 2024.12.10 ab1d4 P P 13918 13390 2024.12.11 06:19:32.066 2024.12.11 06:19:45.984 2024.12.11 05:18:14.386 2024.12.11 05:18:27.776
37 4.0.6.3170 2024.12.02 68abd P P 14109 14591 2024.12.04 06:08:21.340 2024.12.04 06:08:35.449 2024.12.04 05:08:17.244 2024.12.04 05:08:31.835
38 4.0.6.3169 2024.11.28 1673f P P 13895 13786 2024.11.30 06:06:21.809 2024.11.30 06:06:35.704 2024.11.30 05:06:23.712 2024.11.30 05:06:37.498
39 4.0.6.3168 2024.11.27 7fffc P P 14917 13166 2024.11.28 06:02:16.350 2024.11.28 06:02:31.267 2024.11.28 05:03:03.343 2024.11.28 05:03:16.509
40 4.0.6.3168 2024.11.07 f67e2 P P 13239 13994 2024.11.27 06:04:47.702 2024.11.27 06:05:00.941 2024.11.27 05:04:43.739 2024.11.27 05:04:57.733
41 4.0.6.3167 2024.11.04 c9228 P P 13862 13408 2024.11.05 05:57:40.286 2024.11.05 05:57:54.148 2024.11.05 04:58:40.112 2024.11.05 04:58:53.520
42 4.0.6.3165 2024.10.23 b0c36 P P 13523 14018 2024.11.04 11:47:27.028 2024.11.04 11:47:40.551 2024.11.04 10:48:19.861 2024.11.04 10:48:33.879
43 4.0.6.3164 2024.10.17 35344 P P 13984 14397 2024.10.23 06:06:51.648 2024.10.23 06:07:05.632 2024.10.23 05:07:05.043 2024.10.23 05:07:19.440
44 4.0.6.3161 2024.10.05 91502 P P 13547 13842 2024.10.15 06:04:03.937 2024.10.15 06:04:17.484 2024.10.15 05:04:43.914 2024.10.15 05:04:57.756
45 4.0.6.3159 2024.10.01 85136 P P 13722 13904 2024.10.05 06:07:58.613 2024.10.05 06:08:12.335 2024.10.05 05:07:32.622 2024.10.05 05:07:46.526
46 4.0.6.3158 2024.09.30 14c68 P P 13693 13430 2024.10.01 06:06:08.843 2024.10.01 06:06:22.536 2024.10.01 05:05:50.547 2024.10.01 05:06:03.977
47 4.0.6.3157 2024.09.24 3bb2e P P 13860 13397 2024.09.30 06:05:41.184 2024.09.30 06:05:55.044 2024.09.30 05:05:49.044 2024.09.30 05:06:02.441
48 4.0.6.3156 2024.09.21 f6416 P P 13693 13841 2024.09.24 06:05:07.573 2024.09.24 06:05:21.266 2024.09.24 05:05:17.406 2024.09.24 05:05:31.247
49 4.0.6.3155 2024.09.20 1ed0c P P 13669 13626 2024.09.21 06:06:37.606 2024.09.21 06:06:51.275 2024.09.21 05:06:27.162 2024.09.21 05:06:40.788
50 4.0.6.3151 2024.09.09 1b77f P P 14077 13447 2024.09.17 06:03:53.866 2024.09.17 06:04:07.943 2024.09.17 05:04:45.497 2024.09.17 05:04:58.944
51 4.0.6.3149 2024.09.04 32ce9 P P 13936 14379 2024.09.08 04:04:50.072 2024.09.08 04:05:04.008 2024.09.08 03:04:46.170 2024.09.08 03:05:00.549
52 4.0.6.3148 2024.09.02 4be5c P P 14484 14165 2024.09.04 06:07:28.122 2024.09.04 06:07:42.606 2024.09.04 05:06:59.275 2024.09.04 05:07:13.440
53 4.0.6.3147 2024.08.30 5ffd7 P P 13660 14419 2024.09.02 05:56:53.916 2024.09.02 05:57:07.576 2024.09.02 04:56:40.769 2024.09.02 04:56:55.188
54 4.0.6.3146 2024.08.27 38582 P P 14321 14195 2024.08.30 05:51:46.353 2024.08.30 05:52:00.674 2024.08.30 04:51:35.722 2024.08.30 04:51:49.917
55 4.0.6.3145 2024.08.21 87240 P P 14576 13201 2024.08.27 05:46:53.364 2024.08.27 05:47:07.940 2024.08.27 04:46:52.186 2024.08.27 04:47:05.387
56 4.0.6.3144 2024.08.20 5a3b7 P P 13514 13149 2024.08.21 05:44:46.705 2024.08.21 05:45:00.219 2024.08.21 04:44:26.608 2024.08.21 04:44:39.757
57 4.0.6.3142 2024.08.11 b9f39 P P 14298 14396 2024.08.19 05:54:51.860 2024.08.19 05:55:06.158 2024.08.19 04:52:43.639 2024.08.19 04:52:58.035
58 4.0.6.3141 2024.08.09 6d39f P P 14346 14259 2024.08.11 03:48:48.243 2024.08.11 03:49:02.589 2024.08.11 02:46:16.806 2024.08.11 02:46:31.065
59 4.0.5.3140 2024.08.06 64f3a P P 13661 13190 2024.08.10 21:35:46.022 2024.08.10 21:35:59.683 2024.08.10 20:29:41.240 2024.08.10 20:29:54.430
60 4.0.5.3139 2024.08.01 3bc8b P P 14289 14220 2024.08.06 03:40:12.536 2024.08.06 03:40:26.825 2024.08.06 02:42:39.834 2024.08.06 02:42:54.054
61 4.0.5.3136 2024.07.31 e41ec P P 13918 15018 2024.08.01 12:11:56.727 2024.08.01 12:12:10.645 2024.08.01 11:16:29.231 2024.08.01 11:16:44.249
62 4.0.5.3135 2024.07.26 b4981 P P 13874 13379 2024.07.30 05:20:54.217 2024.07.30 05:21:08.091 2024.07.30 04:25:41.341 2024.07.30 04:25:54.720
63 4.0.5.3129 2024.07.24 b8184 P P 13935 14401 2024.07.25 05:20:35.238 2024.07.25 05:20:49.173 2024.07.25 04:25:18.397 2024.07.25 04:25:32.798
64 4.0.5.3128 2024.07.13 aa318 P P 13945 13181 2024.07.24 05:47:36.547 2024.07.24 05:47:50.492 2024.07.24 04:52:09.665 2024.07.24 04:52:22.846
65 4.0.5.3127 2024.07.10 eace3 P P 13563 13908 2024.07.13 05:17:09.972 2024.07.13 05:17:23.535 2024.07.13 04:22:38.515 2024.07.13 04:22:52.423
66 4.0.5.3123 2024.07.09 070ee P P 14299 13350 2024.07.10 05:31:48.606 2024.07.10 05:32:02.905 2024.07.10 04:35:01.766 2024.07.10 04:35:15.116
67 4.0.5.3123 2024.06.24 c27c6 P P 13851 13567 2024.07.09 05:31:07.736 2024.07.09 05:31:21.587 2024.07.09 04:33:40.411 2024.07.09 04:33:53.978
68 4.0.5.3112 2024.06.13 d2e61 P P 14573 14231 2024.06.21 22:05:54.233 2024.06.21 22:06:08.806 2024.06.21 21:05:33.812 2024.06.21 21:05:48.043
69 4.0.5.3109 2024.06.12 de9c0 P P 14658 13767 2024.06.13 02:58:01.739 2024.06.13 02:58:16.397 2024.06.13 02:06:52.574 2024.06.13 02:07:06.341
70 4.0.5.3109 2024.06.09 569cf P P 14877 14377 2024.06.11 02:58:19.504 2024.06.11 02:58:34.381 2024.06.11 02:07:04.150 2024.06.11 02:07:18.527
71 4.0.5.3103 2024.05.24 61480 P P 14221 13939 2024.05.25 02:55:14.216 2024.05.25 02:55:28.437 2024.05.25 02:04:28.861 2024.05.25 02:04:42.800
72 4.0.5.3100 2024.05.15 2dc0d P P 14361 14331 2024.05.24 02:57:38.327 2024.05.24 02:57:52.688 2024.05.24 02:05:59.588 2024.05.24 02:06:13.919
73 4.0.5.3098 2024.05.09 4c3ec P P 14532 14127 2024.05.15 02:53:40.517 2024.05.15 02:53:55.049 2024.05.15 02:03:05.675 2024.05.15 02:03:19.802
74 4.0.5.3097 2024.05.08 ec699 P P 14298 14409 2024.05.09 14:41:33.207 2024.05.09 14:41:47.505 2024.05.09 13:50:54.821 2024.05.09 13:51:09.230
75 4.0.5.3092 2024.05.06 bbc47 P P 6470 13736 2024.05.08 02:54:21.137 2024.05.08 02:54:27.607 2024.05.08 02:03:42.109 2024.05.08 02:03:55.845
76 4.0.5.3091 2024.04.29 062a7 P P 14423 14111 2024.04.30 02:52:00.294 2024.04.30 02:52:14.717 2024.04.30 02:01:47.564 2024.04.30 02:02:01.675
77 4.0.5.3089 2024.04.19 08c92 P P 14533 13924 2024.04.29 02:52:21.020 2024.04.29 02:52:35.553 2024.04.29 02:01:56.066 2024.04.29 02:02:09.990
78 4.0.5.3088 2024.04.17 c4484 P P 14924 13939 2024.04.19 02:52:24.236 2024.04.19 02:52:39.160 2024.04.19 02:01:42.794 2024.04.19 02:01:56.733
79 4.0.5.3086 2024.04.16 434ab P P 14424 14377 2024.04.17 02:49:22.953 2024.04.17 02:49:37.377 2024.04.17 01:59:16.938 2024.04.17 01:59:31.315
80 4.0.5.3083 2024.03.31 6ee48 P P 14502 14767 2024.04.13 02:44:48.461 2024.04.13 02:45:02.963 2024.04.13 01:54:52.297 2024.04.13 01:55:07.064
81 4.0.5.3082 2024.03.31 c768b P P 13939 14189 2024.04.04 14:21:31.592 2024.04.04 14:21:45.531 2024.04.04 13:34:54.095 2024.04.04 13:35:08.284
82 4.0.5.3082 2024.03.25 af9dc P P 13891 14063 2024.03.29 02:01:54.530 2024.03.29 02:02:08.421 2024.03.29 01:13:12.639 2024.03.29 01:13:26.702
83 4.0.5.3081 2024.03.22 17cd2 P P 14485 13844 2024.03.24 03:36:25.536 2024.03.24 03:36:40.021 2024.03.24 02:46:41.121 2024.03.24 02:46:54.965
84 4.0.5.3080 2024.03.22 5d44e P P 14453 13094 2024.03.22 16:21:13.130 2024.03.22 16:21:27.583 2024.03.22 15:34:17.156 2024.03.22 15:34:30.250
85 4.0.5.3080 2024.03.17 17edd P P 14282 13751 2024.03.20 19:48:22.608 2024.03.20 19:48:36.890 2024.03.20 19:01:29.691 2024.03.20 19:01:43.442

Elapsed time, ms. Chart for last 85 runs:

Last commits information (all timestamps in UTC):