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

database = 'db_main_alias'

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

C:\Python3x\Lib\site-packages\firebird\driver\core.py:2159: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

create = False, dsn = 'localhost/33337:db_main_alias', utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00H\x04\x01\x00\x00\x00'
sql_dialect = 3, charset = None, crypt_callback = None

    def __make_connection(create: bool, dsn: str, utf8filename: bool, dpb: bytes,
                          sql_dialect: int, charset: str,
                          crypt_callback: iCryptKeyCallbackImpl) -> Connection:
        with a.get_api().master.get_dispatcher() as provider:
            if crypt_callback is not None:
                provider.set_dbcrypt_callback(crypt_callback)
            if create:
                att = provider.create_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)
                con = Connection(att, dsn, dpb, sql_dialect, charset)
            else:
                con = None
                for hook in get_callbacks(ConnectionHook.ATTACH_REQUEST, Connection):
                    try:
                        con = hook(dsn, dpb)
                    except Exception as e:
                        raise InterfaceError("Error in DATABASE_ATTACH_REQUEST hook.", *e.args) from e
                    if con is not None:
                        break
                if con is None:
>                   att = provider.attach_database(dsn, dpb, 'utf-8' if utf8filename else FS_ENCODING)

C:\Python3x\Lib\site-packages\firebird\driver\core.py:2074: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
filename = 'localhost/33337:db_main_alias'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\x00H\x04\x01\x00\x00\x00'
encoding = 'utf-8'

    def attach_database(self, filename: str, dpb: Optional[bytes] = None, encoding: str = 'ascii') -> iAttachment:
        "Replaces `isc_attach_database()`"
        result = self.vtable.attachDatabase(self, self.status, filename.encode(encoding),
                                            0 if dpb is None else len(dpb), dpb)
>       self._check()

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:1300: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>

    def _check(self) -> None:
        state = self.status.get_state()
        if StateFlag.ERRORS in state:
>           raise self.__report(DatabaseError, self.status.get_errors())
E           firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
E           -Failed to establish a connection.

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:113: DatabaseError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 5.0.3.1674 2025.06.27 3ee5c P P 6186 6533 2025.06.28 11:19:22.031 2025.06.28 11:19:28.217 2025.06.28 10:15:35.613 2025.06.28 10:15:42.146
2 5.0.3.1657 2025.06.26 dcb8a P P 6115 6543 2025.06.27 11:16:06.934 2025.06.27 11:16:13.049 2025.06.27 10:12:27.248 2025.06.27 10:12:33.791
3 5.0.3.1657 2025.06.20 8b4d2 P P 6091 6477 2025.06.26 11:30:29.438 2025.06.26 11:30:35.529 2025.06.26 10:26:42.754 2025.06.26 10:26:49.231
4 5.0.3.1657 2025.06.19 4bd4c P P 7009 6398 2025.06.20 05:34:41.524 2025.06.20 05:34:48.533 2025.06.20 04:30:55.878 2025.06.20 04:31:02.276
5 5.0.3.1657 2025.06.11 dae6f P P 6207 6441 2025.06.19 11:06:09.430 2025.06.19 11:06:15.637 2025.06.19 10:02:19.859 2025.06.19 10:02:26.300
6 5.0.3.1657 2025.06.10 dbc92 P P 6312 6519 2025.06.11 08:52:24.894 2025.06.11 08:52:31.206 2025.06.11 07:48:16.595 2025.06.11 07:48:23.114
7 5.0.3.1656 2025.06.05 00512 P P 6112 6529 2025.06.10 10:07:40.421 2025.06.10 10:07:46.533 2025.06.10 09:03:21.021 2025.06.10 09:03:27.550
8 5.0.3.1656 2025.05.20 c4b11 P P 7029 6424 2025.06.03 09:54:24.307 2025.06.03 09:54:31.336 2025.06.03 08:51:21.308 2025.06.03 08:51:27.732
9 5.0.3.1652 2025.05.13 f51c6 P P 6103 6508 2025.05.21 06:35:23.467 2025.05.21 06:35:29.570 2025.05.21 05:32:36.145 2025.05.21 05:32:42.653
10 5.0.3.1651 2025.05.08 ee9d2 P F 6467 2207 2025.05.13 06:48:06.547 2025.05.13 06:48:13.014 2025.05.13 05:43:46.177 2025.05.13 05:43:48.384
11 5.0.3.1651 2025.05.04 3d914 P F 6617 2198 2025.05.09 04:37:06.978 2025.05.09 04:37:13.595 2025.05.09 03:32:44.207 2025.05.09 03:32:46.405
12 5.0.3.1651 2025.04.30 141ef P F 7029 2209 2025.05.02 04:44:41.801 2025.05.02 04:44:48.830 2025.05.02 03:40:37.008 2025.05.02 03:40:39.217
13 5.0.3.1650 2025.04.30 6253f P F 5909 2193 2025.05.01 04:43:44.672 2025.05.01 04:43:50.581 2025.05.01 03:39:33.576 2025.05.01 03:39:35.769
14 5.0.3.1650 2025.04.28 4cbff P F 6033 2382 2025.04.30 04:42:46.723 2025.04.30 04:42:52.756 2025.04.30 03:38:46.650 2025.04.30 03:38:49.032
15 5.0.3.1649 2025.04.21 5b2d0 P F 6118 2203 2025.04.26 10:16:50.161 2025.04.26 10:16:56.279 2025.04.26 09:11:48.844 2025.04.26 09:11:51.047
16 5.0.3.1648 2025.04.18 2f4c5 P P 6137 5458 2025.04.20 04:28:03.419 2025.04.20 04:28:09.556 2025.04.20 03:24:14.607 2025.04.20 03:24:20.065
17 5.0.3.1635 2025.04.03 f6bd1 P F 6042 2397 2025.04.18 06:55:45.170 2025.04.18 06:55:51.212 2025.04.18 05:50:58.256 2025.04.18 05:51:00.653
18 5.0.3.1635 2025.03.31 22ec6 P F 7068 2421 2025.04.03 10:01:33.929 2025.04.03 10:01:40.997 2025.04.03 08:56:22.471 2025.04.03 08:56:24.892
19 5.0.3.1633 2025.03.28 3123a P F 6170 2198 2025.03.31 10:00:01.055 2025.03.31 10:00:07.225 2025.03.31 08:54:51.738 2025.03.31 08:54:53.936
20 5.0.3.1633 2025.03.27 e0fb8 P F 6187 2437 2025.03.28 10:31:56.410 2025.03.28 10:32:02.597 2025.03.28 09:22:51.663 2025.03.28 09:22:54.100
21 5.0.3.1631 2025.03.25 bda65 P P 6525 7077 2025.03.27 10:12:29.284 2025.03.27 10:12:35.809 2025.03.27 09:04:50.952 2025.03.27 09:04:58.029
22 5.0.3.1631 2025.03.21 1925b P P 6237 6925 2025.03.25 06:46:31.933 2025.03.25 06:46:38.170 2025.03.25 05:38:48.724 2025.03.25 05:38:55.649
23 5.0.3.1629 2025.03.18 506d7 P P 7021 7428 2025.03.20 09:46:29.465 2025.03.20 09:46:36.486 2025.03.20 08:38:48.916 2025.03.20 08:38:56.344
24 5.0.3.1628 2025.03.14 16d05 P P 6397 5406 2025.03.18 09:40:39.027 2025.03.18 09:40:45.424 2025.03.18 08:34:23.277 2025.03.18 08:34:28.683
25 5.0.3.1627 2025.02.26 4e218 P P 6537 5817 2025.03.13 10:00:18.179 2025.03.13 10:00:24.716 2025.03.13 08:52:10.477 2025.03.13 08:52:16.294
26 5.0.3.1624 2025.02.25 dc3b2 P P 8906 6527 2025.02.26 15:32:25.607 2025.02.26 15:32:34.513 2025.02.26 14:24:59.262 2025.02.26 14:25:05.789
27 5.0.2.1615 2025.02.20 4a726 P F 6069 2372 2025.02.25 08:46:16.469 2025.02.25 08:46:22.538 2025.02.25 07:39:06.109 2025.02.25 07:39:08.481
28 5.0.2.1615 2025.02.14 9cb76 P P 6351 6419 2025.02.15 04:13:52.320 2025.02.15 04:13:58.671 2025.02.15 03:08:36.176 2025.02.15 03:08:42.595
29 5.0.2.1577 2025.02.07 f50a2 P P 6106 6422 2025.02.14 06:26:30.200 2025.02.14 06:26:36.306 2025.02.14 05:22:26.797 2025.02.14 05:22:33.219
30 5.0.2.1577 2024.12.24 3c80e P P 6134 6471 2025.02.06 09:40:01.174 2025.02.06 09:40:07.308 2025.02.06 08:36:01.485 2025.02.06 08:36:07.956
31 5.0.2.1576 2024.12.17 646b0 P P 6088 6445 2024.12.24 09:23:07.241 2024.12.24 09:23:13.329 2024.12.24 08:19:16.274 2024.12.24 08:19:22.719
32 5.0.2.1575 2024.12.09 9af52 P P 8598 6412 2024.12.16 09:19:51.747 2024.12.16 09:20:00.345 2024.12.16 08:16:05.949 2024.12.16 08:16:12.361
33 5.0.2.1575 2024.12.08 63d39 P P 6652 6088 2024.12.09 15:09:11.114 2024.12.09 15:09:17.766 2024.12.09 14:10:28.380 2024.12.09 14:10:34.468
34 5.0.2.1571 2024.12.08 8d11a P P 6613 6109 2024.12.09 06:22:51.252 2024.12.09 06:22:57.865 2024.12.09 05:22:07.294 2024.12.09 05:22:13.403
35 5.0.2.1567 2024.12.07 b01a2 P P 9001 6031 2024.12.08 02:01:21.514 2024.12.08 02:01:30.515 2024.12.08 00:58:53.578 2024.12.08 00:58:59.609
36 5.0.2.1567 2024.12.02 6ae74 P P 6124 6161 2024.12.04 09:04:42.604 2024.12.04 09:04:48.728 2024.12.04 08:05:58.106 2024.12.04 08:06:04.267
37 5.0.2.1567 2024.11.26 56e63 P P 7042 5662 2024.11.30 09:10:53.240 2024.11.30 09:11:00.282 2024.11.30 08:07:40.517 2024.11.30 08:07:46.179
38 5.0.2.1567 2024.11.21 96f61 P P 6130 6483 2024.11.27 09:07:36.483 2024.11.27 09:07:42.613 2024.11.27 08:05:01.831 2024.11.27 08:05:08.314
39 5.0.2.1567 2024.11.18 e1289 P F 6249 2201 2024.11.21 09:26:01.803 2024.11.21 09:26:08.052 2024.11.21 08:21:30.029 2024.11.21 08:21:32.230
40 5.0.2.1533 2024.10.23 0ec43 P P 6222 5772 2024.11.18 09:01:51.321 2024.11.18 09:01:57.543 2024.11.18 07:58:31.605 2024.11.18 07:58:37.377
41 5.0.2.1533 2024.10.22 8af7a P P 6019 6457 2024.10.23 09:09:05.860 2024.10.23 09:09:11.879 2024.10.23 08:06:23.071 2024.10.23 08:06:29.528
42 5.0.2.1532 2024.10.15 36dc0 P P 7070 6434 2024.10.22 15:11:14.122 2024.10.22 15:11:21.192 2024.10.22 14:08:32.517 2024.10.22 14:08:38.951
43 5.0.2.1518 2024.10.04 259ba P P 6058 6425 2024.10.15 09:05:12.255 2024.10.15 09:05:18.313 2024.10.15 08:02:48.417 2024.10.15 08:02:54.842
44 5.0.2.1518 2024.09.26 703cd P P 6099 6775 2024.10.03 09:10:04.731 2024.10.03 09:10:10.830 2024.10.03 08:07:20.345 2024.10.03 08:07:27.120
45 5.0.2.1489 2024.08.31 994a6 P F 8272 2233 2024.09.26 09:29:08.992 2024.09.26 09:29:17.264 2024.09.26 08:24:05.345 2024.09.26 08:24:07.578
46 5.0.2.1476 2024.08.09 843ea P F 6404 2190 2024.09.01 09:18:13.298 2024.09.01 09:18:19.702 2024.09.01 08:11:08.735 2024.09.01 08:11:10.925
47 5.0.1.1454 2024.08.08 30f9f P P 7067 6554 2024.08.09 08:59:06.555 2024.08.09 08:59:13.622 2024.08.09 07:56:21.468 2024.08.09 07:56:28.022
48 5.0.1.1453 2024.08.07 ebbc3 P P 6073 6583 2024.08.08 20:13:28.548 2024.08.08 20:13:34.621 2024.08.08 19:10:11.244 2024.08.08 19:10:17.827
49 5.0.1.1453 2024.08.06 1b9d0 P P 7071 6495 2024.08.07 08:27:13.570 2024.08.07 08:27:20.641 2024.08.07 07:29:34.452 2024.08.07 07:29:40.947
50 5.0.1.1453 2024.07.30 48044 P P 6314 5494 2024.08.03 08:25:12.448 2024.08.03 08:25:18.762 2024.08.03 07:27:27.228 2024.08.03 07:27:32.722
51 5.0.1.1453 2024.07.28 8d956 P P 6283 5506 2024.07.30 08:05:51.854 2024.07.30 08:05:58.137 2024.07.30 07:09:50.783 2024.07.30 07:09:56.289
52 5.0.1.1429 2024.07.19 8ee90 P P 6330 6422 2024.07.27 08:04:32.687 2024.07.27 08:04:39.017 2024.07.27 07:08:57.050 2024.07.27 07:09:03.472
53 5.0.1.1428 2024.07.15 00392 P P 6252 5519 2024.07.19 07:59:59.596 2024.07.19 08:00:05.848 2024.07.19 07:04:27.516 2024.07.19 07:04:33.035
54 5.0.1.1428 2024.06.30 67a31 P P 6376 6499 2024.07.15 08:11:28.131 2024.07.15 08:11:34.507 2024.07.15 07:14:44.394 2024.07.15 07:14:50.893
55 5.0.1.1415 2024.06.12 f8731 P P 6345 6665 2024.06.22 05:09:57.048 2024.06.22 05:10:03.393 2024.06.22 04:14:53.397 2024.06.22 04:15:00.062
56 5.0.1.1415 2024.06.11 31d74 P P 7766 7954 2024.06.11 23:39:44.103 2024.06.11 23:39:51.869 2024.06.11 22:48:03.553 2024.06.11 22:48:11.507
57 5.0.1.1401 2024.06.05 f9b76 P P 7938 7001 2024.06.11 04:30:37.830 2024.06.11 04:30:45.768 2024.06.11 03:38:43.729 2024.06.11 03:38:50.730
58 5.0.1.1398 2024.05.10 5e3ce P P 7719 6970 2024.05.25 05:25:22.112 2024.05.25 05:25:29.831 2024.05.25 04:33:54.076 2024.05.25 04:34:01.046
59 5.0.1.1397 2024.05.09 ee2ef P P 7751 7907 2024.05.10 05:21:19.099 2024.05.10 05:21:26.850 2024.05.10 04:30:23.855 2024.05.10 04:30:31.762
60 5.0.1.1392 2024.04.29 7dbc2 P P 9985 6876 2024.05.09 17:11:00.611 2024.05.09 17:11:10.596 2024.05.09 16:19:53.077 2024.05.09 16:19:59.953
61 5.0.1.1386 2024.04.25 c0328 P P 8032 6860 2024.04.29 05:20:20.322 2024.04.29 05:20:28.354 2024.04.29 04:29:25.602 2024.04.29 04:29:32.462
62 5.0.1.1386 2024.04.20 80571 P P 7072 6869 2024.04.25 05:22:53.927 2024.04.25 05:23:00.999 2024.04.25 04:31:13.451 2024.04.25 04:31:20.320
63 5.0.1.1378 2024.04.07 5292b P F 7860 2297 2024.04.20 05:42:40.840 2024.04.20 05:42:48.700 2024.04.20 04:47:30.605 2024.04.20 04:47:32.902
64 5.0.1.1346 2024.03.16 fe320 P P 6704 6079 2024.04.07 03:41:13.446 2024.04.07 03:41:20.150 2024.04.07 02:54:40.291 2024.04.07 02:54:46.370
65 5.0.1.1346 2024.03.02 da408 P P 6656 6141 2024.03.25 22:28:50.995 2024.03.25 22:28:57.651 2024.03.25 21:42:24.066 2024.03.25 21:42:30.207
66 5.0.1.1340 2024.02.17 08a71 P P 6844 6062 2024.03.25 23:58:34.161 2024.03.25 23:58:41.005 2024.03.25 23:12:08.357 2024.03.25 23:12:14.419
67 5.0.1.1325 2024.02.06 c98fb P F 5655 2311 2024.03.26 02:30:01.596 2024.03.26 02:30:07.251 2024.03.26 01:40:21.109 2024.03.26 01:40:23.420
68 5.0.1.1325 2024.02.02 1d438 P F 5703 2296 2024.03.26 07:47:26.267 2024.03.26 07:47:31.970 2024.03.26 06:56:51.751 2024.03.26 06:56:54.047
69 5.0.1.1325 2024.01.26 cffb6 P F 6719 2312 2024.03.26 10:13:12.191 2024.03.26 10:13:18.910 2024.03.26 09:23:32.484 2024.03.26 09:23:34.796
70 5.0.1.1325 2024.01.26 d3810 P F 5844 2187 2024.03.26 12:04:54.848 2024.03.26 12:05:00.692 2024.03.26 11:15:22.009 2024.03.26 11:15:24.196
71 5.0.1.1318 2024.01.21 a7ca3 P P 6750 6172 2024.03.26 13:33:55.327 2024.03.26 13:34:02.077 2024.03.26 12:47:34.332 2024.03.26 12:47:40.504
72 5.0.1.1318 2024.01.21 d429d P P 5906 6156 2024.03.26 15:15:32.134 2024.03.26 15:15:38.040 2024.03.26 14:29:14.005 2024.03.26 14:29:20.161
73 5.0.1.1318 2024.01.21 f1ab5 P P 5640 5999 2024.03.26 17:31:31.541 2024.03.26 17:31:37.181 2024.03.26 16:45:10.357 2024.03.26 16:45:16.356
74 5.0.1.1318 2024.01.20 46722 P P 5640 6000 2024.03.26 18:58:29.855 2024.03.26 18:58:35.495 2024.03.26 18:12:15.435 2024.03.26 18:12:21.435

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):