Check firebird.log [no messages found for interval when this test was running]
Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
Network / firewall ?

firebird.driver.types.DatabaseError: Unable to complete network request to host "localhost".
-Failed to establish a connection.

LOG DETAILS:

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

tests\functional\replication\test_ddl_triggers_must_not_fire_on_replica.py:358: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

database = 'db_main_alias'

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

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

create = False, dsn = 'localhost/33337:db_main_alias', utf8filename = False
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\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:2064: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <firebird.driver.interfaces.iProvider pytest object at [hex]>
filename = 'localhost/33337:db_main_alias'
dpb = b'\x01\x1c\x06SYSDBA\x1d\tmasterkey?\x04\x03\x00\x00\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:1295: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

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

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

C:\Python3x\Lib\site-packages\firebird\driver\interfaces.py:113: DatabaseError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 5.0.3.1674 2025.06.27 3ee5c P P 6798 7405 2025.06.30 11:14:50.738 2025.06.30 11:14:57.536 2025.06.30 10:11:04.393 2025.06.30 10:11:11.798
2 5.0.3.1657 2025.06.26 dcb8a P P 6840 6381 2025.06.27 11:16:18.812 2025.06.27 11:16:25.652 2025.06.27 10:12:39.981 2025.06.27 10:12:46.362
3 5.0.3.1657 2025.06.20 8b4d2 P P 6819 6337 2025.06.26 11:30:41.272 2025.06.26 11:30:48.091 2025.06.26 10:26:55.374 2025.06.26 10:27:01.711
4 5.0.3.1657 2025.06.19 4bd4c P P 6881 6327 2025.06.20 05:34:54.222 2025.06.20 05:35:01.103 2025.06.20 04:31:08.401 2025.06.20 04:31:14.728
5 5.0.3.1657 2025.06.11 dae6f P P 6853 6328 2025.06.19 11:06:21.595 2025.06.19 11:06:28.448 2025.06.19 10:02:32.443 2025.06.19 10:02:38.771
6 5.0.3.1657 2025.06.10 dbc92 P P 6204 6336 2025.06.11 08:52:36.999 2025.06.11 08:52:43.203 2025.06.11 07:48:29.293 2025.06.11 07:48:35.629
7 5.0.3.1656 2025.06.05 00512 P P 6821 7396 2025.06.10 10:07:52.209 2025.06.10 10:07:59.030 2025.06.10 09:03:33.725 2025.06.10 09:03:41.121
8 5.0.3.1656 2025.05.20 c4b11 P P 6841 6323 2025.06.03 09:54:36.980 2025.06.03 09:54:43.821 2025.06.03 08:51:33.854 2025.06.03 08:51:40.177
9 5.0.3.1652 2025.05.13 f51c6 P P 6769 7330 2025.05.21 06:35:36.241 2025.05.21 06:35:43.010 2025.05.21 05:32:48.787 2025.05.21 05:32:56.117
10 5.0.3.1651 2025.05.08 ee9d2 P F 6830 2419 2025.05.13 06:48:18.691 2025.05.13 06:48:25.521 2025.05.13 05:43:50.779 2025.05.13 05:43:53.198
11 5.0.3.1651 2025.05.04 3d914 P F 6798 2406 2025.05.09 04:37:19.261 2025.05.09 04:37:26.059 2025.05.09 03:32:48.781 2025.05.09 03:32:51.187
12 5.0.3.1651 2025.04.30 141ef P F 6799 2404 2025.05.02 04:44:54.447 2025.05.02 04:45:01.246 2025.05.02 03:40:41.597 2025.05.02 03:40:44.001
13 5.0.3.1650 2025.04.30 6253f P F 6781 2202 2025.05.01 04:43:57.251 2025.05.01 04:44:04.032 2025.05.01 03:39:38.159 2025.05.01 03:39:40.361
14 5.0.3.1650 2025.04.28 4cbff P F 6779 2385 2025.04.30 04:42:59.374 2025.04.30 04:43:06.153 2025.04.30 03:38:51.244 2025.04.30 03:38:53.629
15 5.0.3.1649 2025.04.21 5b2d0 P F 6797 2413 2025.04.26 10:17:02.946 2025.04.26 10:17:09.743 2025.04.26 09:11:53.442 2025.04.26 09:11:55.855
16 5.0.3.1648 2025.04.18 2f4c5 P P 6798 7354 2025.04.20 04:28:16.209 2025.04.20 04:28:23.007 2025.04.20 03:24:26.239 2025.04.20 03:24:33.593
17 5.0.3.1635 2025.04.03 f6bd1 P F 6802 2391 2025.04.18 06:55:57.903 2025.04.18 06:56:04.705 2025.04.18 05:51:02.853 2025.04.18 05:51:05.244
18 5.0.3.1635 2025.03.31 22ec6 P F 6777 2374 2025.04.03 10:01:46.643 2025.04.03 10:01:53.420 2025.04.03 08:56:27.106 2025.04.03 08:56:29.480
19 5.0.3.1633 2025.03.28 3123a P F 6807 2395 2025.03.31 10:00:12.947 2025.03.31 10:00:19.754 2025.03.31 08:54:56.324 2025.03.31 08:54:58.719
20 5.0.3.1633 2025.03.27 e0fb8 P F 5869 2420 2025.03.28 10:32:09.377 2025.03.28 10:32:15.246 2025.03.28 09:22:56.310 2025.03.28 09:22:58.730
21 5.0.3.1631 2025.03.25 bda65 P P 6360 7422 2025.03.27 10:12:42.270 2025.03.27 10:12:48.630 2025.03.27 09:05:03.260 2025.03.27 09:05:10.682
22 5.0.3.1631 2025.03.21 1925b P P 7235 6411 2025.03.25 06:46:43.917 2025.03.25 06:46:51.152 2025.03.25 05:39:01.867 2025.03.25 05:39:08.278
23 5.0.3.1629 2025.03.18 506d7 P P 6887 7475 2025.03.20 09:46:42.142 2025.03.20 09:46:49.029 2025.03.20 08:39:02.569 2025.03.20 08:39:10.044
24 5.0.3.1628 2025.03.14 16d05 P P 6841 7347 2025.03.18 09:40:51.181 2025.03.18 09:40:58.022 2025.03.18 08:34:34.859 2025.03.18 08:34:42.206
25 5.0.3.1627 2025.02.26 4e218 P P 5833 6413 2025.03.13 10:00:31.355 2025.03.13 10:00:37.188 2025.03.13 08:52:22.471 2025.03.13 08:52:28.884
26 5.0.3.1624 2025.02.25 dc3b2 P P 6147 6404 2025.02.26 15:32:40.272 2025.02.26 15:32:46.419 2025.02.26 14:25:12.235 2025.02.26 14:25:18.639
27 5.0.2.1615 2025.02.20 4a726 P F 5880 2388 2025.02.25 08:46:29.264 2025.02.25 08:46:35.144 2025.02.25 07:39:10.681 2025.02.25 07:39:13.069
28 5.0.2.1615 2025.02.14 9cb76 P P 6833 7398 2025.02.15 04:14:04.432 2025.02.15 04:14:11.265 2025.02.15 03:08:48.733 2025.02.15 03:08:56.131
29 5.0.2.1577 2025.02.07 f50a2 P P 6855 6368 2025.02.14 06:26:42.933 2025.02.14 06:26:49.788 2025.02.14 05:22:39.420 2025.02.14 05:22:45.788
30 5.0.2.1577 2024.12.24 3c80e P P 6885 7395 2025.02.06 09:40:14.004 2025.02.06 09:40:20.889 2025.02.06 08:36:14.175 2025.02.06 08:36:21.570
31 5.0.2.1576 2024.12.17 646b0 P P 6856 6389 2024.12.24 09:23:20.062 2024.12.24 09:23:26.918 2024.12.24 08:19:28.940 2024.12.24 08:19:35.329
32 5.0.2.1575 2024.12.09 9af52 P P 6871 7411 2024.12.16 09:20:07.002 2024.12.16 09:20:13.873 2024.12.16 08:16:18.531 2024.12.16 08:16:25.942
33 5.0.2.1575 2024.12.08 63d39 P P 6818 6252 2024.12.09 15:09:23.313 2024.12.09 15:09:30.131 2024.12.09 14:10:40.527 2024.12.09 14:10:46.779
34 5.0.2.1571 2024.12.08 8d11a P P 5739 6245 2024.12.09 06:23:04.397 2024.12.09 06:23:10.136 2024.12.09 05:22:19.444 2024.12.09 05:22:25.689
35 5.0.2.1567 2024.12.07 b01a2 P P 6271 7696 2024.12.08 02:01:36.557 2024.12.08 02:01:42.828 2024.12.08 00:59:05.866 2024.12.08 00:59:13.562
36 5.0.2.1567 2024.12.02 6ae74 P P 5875 6293 2024.12.04 09:04:55.390 2024.12.04 09:05:01.265 2024.12.04 08:06:10.297 2024.12.04 08:06:16.590
37 5.0.2.1567 2024.11.26 56e63 P P 6867 6409 2024.11.30 09:11:05.984 2024.11.30 09:11:12.851 2024.11.30 08:07:52.321 2024.11.30 08:07:58.730
38 5.0.2.1567 2024.11.21 96f61 P P 6895 7410 2024.11.27 09:07:48.296 2024.11.27 09:07:55.191 2024.11.27 08:05:14.475 2024.11.27 08:05:21.885
39 5.0.2.1567 2024.11.18 e1289 P F 6892 2430 2024.11.21 09:26:13.800 2024.11.21 09:26:20.692 2024.11.21 08:21:34.658 2024.11.21 08:21:37.088
40 5.0.2.1533 2024.10.23 0ec43 P P 5843 7417 2024.11.18 09:02:04.216 2024.11.18 09:02:10.059 2024.11.18 07:58:43.535 2024.11.18 07:58:50.952
41 5.0.2.1533 2024.10.22 8af7a P P 6843 6422 2024.10.23 09:09:17.694 2024.10.23 09:09:24.537 2024.10.23 08:06:35.935 2024.10.23 08:06:42.357
42 5.0.2.1532 2024.10.15 36dc0 P P 6854 6355 2024.10.22 15:11:27.272 2024.10.22 15:11:34.126 2024.10.22 14:08:45.120 2024.10.22 14:08:51.475
43 5.0.2.1518 2024.10.04 259ba P P 6853 6369 2024.10.15 09:05:25.030 2024.10.15 09:05:31.883 2024.10.15 08:03:01.013 2024.10.15 08:03:07.382
44 5.0.2.1518 2024.09.26 703cd P P 6842 6337 2024.10.03 09:10:17.599 2024.10.03 09:10:24.441 2024.10.03 08:07:33.316 2024.10.03 08:07:39.653
45 5.0.2.1489 2024.08.31 994a6 P F 6434 2219 2024.09.26 09:29:23.755 2024.09.26 09:29:30.189 2024.09.26 08:24:09.972 2024.09.26 08:24:12.191
46 5.0.2.1476 2024.08.09 843ea P F 6873 2210 2024.09.01 09:18:25.467 2024.09.01 09:18:32.340 2024.09.01 08:11:13.314 2024.09.01 08:11:15.524
47 5.0.1.1454 2024.08.08 30f9f P P 6893 6368 2024.08.09 08:59:19.423 2024.08.09 08:59:26.316 2024.08.09 07:56:34.216 2024.08.09 07:56:40.584
48 5.0.1.1453 2024.08.07 ebbc3 P P 6939 6358 2024.08.08 20:13:41.400 2024.08.08 20:13:48.339 2024.08.08 19:10:23.982 2024.08.08 19:10:30.340
49 5.0.1.1453 2024.08.06 1b9d0 P P 6967 6333 2024.08.07 08:27:26.455 2024.08.07 08:27:33.422 2024.08.07 07:29:47.105 2024.08.07 07:29:53.438
50 5.0.1.1453 2024.07.30 48044 P P 6919 7392 2024.08.03 08:25:24.613 2024.08.03 08:25:31.532 2024.08.03 07:27:38.905 2024.08.03 07:27:46.297
51 5.0.1.1453 2024.07.28 8d956 P P 6862 7329 2024.07.30 08:06:04.918 2024.07.30 08:06:11.780 2024.07.30 07:10:02.425 2024.07.30 07:10:09.754
52 5.0.1.1429 2024.07.19 8ee90 P P 6897 6387 2024.07.27 08:04:44.718 2024.07.27 08:04:51.615 2024.07.27 07:09:09.638 2024.07.27 07:09:16.025
53 5.0.1.1428 2024.07.15 00392 P P 6870 7369 2024.07.19 08:00:12.570 2024.07.19 08:00:19.440 2024.07.19 07:04:39.253 2024.07.19 07:04:46.622
54 5.0.1.1428 2024.06.30 67a31 P P 6944 6499 2024.07.15 08:11:40.308 2024.07.15 08:11:47.252 2024.07.15 07:14:57.060 2024.07.15 07:15:03.559
55 5.0.1.1415 2024.06.12 f8731 P P 6880 6354 2024.06.22 05:10:09.202 2024.06.22 05:10:16.082 2024.06.22 04:15:06.231 2024.06.22 04:15:12.585
56 5.0.1.1415 2024.06.11 31d74 P P 12486 9720 2024.06.11 23:39:59.011 2024.06.11 23:40:11.497 2024.06.11 22:48:18.117 2024.06.11 22:48:27.837
57 5.0.1.1401 2024.06.05 f9b76 P P 12501 12784 2024.06.11 04:30:52.941 2024.06.11 04:31:05.442 2024.06.11 03:38:58.168 2024.06.11 03:39:10.952
58 5.0.1.1398 2024.05.10 5e3ce P P 12424 10768 2024.05.25 05:25:36.958 2024.05.25 05:25:49.382 2024.05.25 04:34:07.657 2024.05.25 04:34:18.425
59 5.0.1.1397 2024.05.09 ee2ef P P 12439 9768 2024.05.10 05:21:34.023 2024.05.10 05:21:46.462 2024.05.10 04:30:38.342 2024.05.10 04:30:48.110
60 5.0.1.1392 2024.04.29 7dbc2 P P 12392 12736 2024.05.09 17:11:17.660 2024.05.09 17:11:30.052 2024.05.09 16:20:07.360 2024.05.09 16:20:20.096
61 5.0.1.1386 2024.04.25 c0328 P P 11502 12751 2024.04.29 05:20:34.465 2024.04.29 05:20:45.967 2024.04.29 04:29:39.885 2024.04.29 04:29:52.636
62 5.0.1.1386 2024.04.20 80571 P P 10216 12788 2024.04.25 05:23:07.972 2024.04.25 05:23:18.188 2024.04.25 04:31:27.769 2024.04.25 04:31:40.557
63 5.0.1.1378 2024.04.07 5292b P F 12080 2328 2024.04.20 05:42:55.888 2024.04.20 05:43:07.968 2024.04.20 04:47:35.059 2024.04.20 04:47:37.387
64 5.0.1.1346 2024.03.16 fe320 P P 5688 6173 2024.04.07 03:41:26.698 2024.04.07 03:41:32.386 2024.04.07 02:54:52.433 2024.04.07 02:54:58.606
65 5.0.1.1346 2024.03.02 da408 P P 6656 6171 2024.03.25 22:29:03.230 2024.03.25 22:29:09.886 2024.03.25 21:42:36.240 2024.03.25 21:42:42.411
66 5.0.1.1340 2024.02.17 08a71 P P 6672 6172 2024.03.25 23:58:46.584 2024.03.25 23:58:53.256 2024.03.25 23:12:20.436 2024.03.25 23:12:26.608
67 5.0.1.1325 2024.02.06 c98fb P F 6703 2296 2024.03.26 02:30:13.831 2024.03.26 02:30:20.534 2024.03.26 01:40:25.594 2024.03.26 01:40:27.890
68 5.0.1.1325 2024.02.02 1d438 P F 6750 2171 2024.03.26 07:47:38.596 2024.03.26 07:47:45.346 2024.03.26 06:56:56.377 2024.03.26 06:56:58.548
69 5.0.1.1325 2024.01.26 cffb6 P F 5672 2312 2024.03.26 10:13:25.443 2024.03.26 10:13:31.115 2024.03.26 09:23:37.000 2024.03.26 09:23:39.312
70 5.0.1.1325 2024.01.26 d3810 P F 5687 2171 2024.03.26 12:05:07.240 2024.03.26 12:05:12.927 2024.03.26 11:15:26.494 2024.03.26 11:15:28.665
71 5.0.1.1318 2024.01.21 a7ca3 P P 6672 6203 2024.03.26 13:34:07.625 2024.03.26 13:34:14.297 2024.03.26 12:47:46.568 2024.03.26 12:47:52.771
72 5.0.1.1318 2024.01.21 d429d P P 5656 6171 2024.03.26 15:15:44.557 2024.03.26 15:15:50.213 2024.03.26 14:29:26.226 2024.03.26 14:29:32.397
73 5.0.1.1318 2024.01.21 f1ab5 P P 6656 6140 2024.03.26 17:31:43.714 2024.03.26 17:31:50.370 2024.03.26 16:45:22.374 2024.03.26 16:45:28.514
74 5.0.1.1318 2024.01.20 46722 P P 5687 6172 2024.03.26 18:58:42.028 2024.03.26 18:58:47.715 2024.03.26 18:12:27.452 2024.03.26 18:12:33.624

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):