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

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 9345 9210 2025.06.30 11:15:06.952 2025.06.30 11:15:16.297 2025.06.30 10:11:27.828 2025.06.30 10:11:37.038
2 5.0.3.1657 2025.06.26 dcb8a P P 9279 9534 2025.06.27 11:16:32.123 2025.06.27 11:16:41.402 2025.06.27 10:12:55.386 2025.06.27 10:13:04.920
3 5.0.3.1657 2025.06.20 8b4d2 P P 9310 8657 2025.06.26 11:30:57.214 2025.06.26 11:31:06.524 2025.06.26 10:27:08.313 2025.06.26 10:27:16.970
4 5.0.3.1657 2025.06.19 4bd4c P P 8457 8530 2025.06.20 05:35:07.630 2025.06.20 05:35:16.087 2025.06.20 04:31:21.381 2025.06.20 04:31:29.911
5 5.0.3.1657 2025.06.11 dae6f P P 9089 9532 2025.06.19 11:06:37.532 2025.06.19 11:06:46.621 2025.06.19 10:02:47.782 2025.06.19 10:02:57.314
6 5.0.3.1657 2025.06.10 dbc92 P P 9754 9542 2025.06.11 08:52:49.466 2025.06.11 08:52:59.220 2025.06.11 07:48:47.857 2025.06.11 07:48:57.399
7 5.0.3.1656 2025.06.05 00512 P P 9516 9520 2025.06.10 10:08:08.254 2025.06.10 10:08:17.770 2025.06.10 09:03:50.126 2025.06.10 09:03:59.646
8 5.0.3.1656 2025.05.20 c4b11 P P 9273 8711 2025.06.03 09:54:53.037 2025.06.03 09:55:02.310 2025.06.03 08:51:49.521 2025.06.03 08:51:58.232
9 5.0.3.1652 2025.05.13 f51c6 P P 9263 9678 2025.05.21 06:35:51.965 2025.05.21 06:36:01.228 2025.05.21 05:33:05.021 2025.05.21 05:33:14.699
10 5.0.3.1651 2025.05.08 ee9d2 P F 9557 2393 2025.05.13 06:48:31.108 2025.05.13 06:48:40.665 2025.05.13 05:43:55.403 2025.05.13 05:43:57.796
11 5.0.3.1651 2025.05.04 3d914 P F 9506 2400 2025.05.09 04:37:35.153 2025.05.09 04:37:44.659 2025.05.09 03:32:53.403 2025.05.09 03:32:55.803
12 5.0.3.1651 2025.04.30 141ef P F 9505 2403 2025.05.02 04:45:06.960 2025.05.02 04:45:16.465 2025.05.02 03:40:46.194 2025.05.02 03:40:48.597
13 5.0.3.1650 2025.04.30 6253f P F 9285 2404 2025.05.01 04:44:12.806 2025.05.01 04:44:22.091 2025.05.01 03:39:42.742 2025.05.01 03:39:45.146
14 5.0.3.1650 2025.04.28 4cbff P F 9475 2204 2025.04.30 04:43:11.632 2025.04.30 04:43:21.107 2025.04.30 03:38:56.025 2025.04.30 03:38:58.229
15 5.0.3.1649 2025.04.21 5b2d0 P F 9508 2395 2025.04.26 10:17:15.345 2025.04.26 10:17:24.853 2025.04.26 09:11:58.064 2025.04.26 09:12:00.459
16 5.0.3.1648 2025.04.18 2f4c5 P P 9401 8710 2025.04.20 04:28:32.149 2025.04.20 04:28:41.550 2025.04.20 03:24:42.303 2025.04.20 03:24:51.013
17 5.0.3.1635 2025.04.03 f6bd1 P F 9253 2424 2025.04.18 06:56:13.587 2025.04.18 06:56:22.840 2025.04.18 05:51:07.469 2025.04.18 05:51:09.893
18 5.0.3.1635 2025.03.31 22ec6 P F 9502 2200 2025.04.03 10:01:58.952 2025.04.03 10:02:08.454 2025.04.03 08:56:31.860 2025.04.03 08:56:34.060
19 5.0.3.1633 2025.03.28 3123a P F 9385 2392 2025.03.31 10:00:26.220 2025.03.31 10:00:35.605 2025.03.31 08:55:00.945 2025.03.31 08:55:03.337
20 5.0.3.1633 2025.03.27 e0fb8 P F 9443 2403 2025.03.28 10:32:24.821 2025.03.28 10:32:34.264 2025.03.28 09:23:00.947 2025.03.28 09:23:03.350
21 5.0.3.1631 2025.03.25 bda65 P P 9873 8789 2025.03.27 10:12:57.262 2025.03.27 10:13:07.135 2025.03.27 09:05:19.343 2025.03.27 09:05:28.132
22 5.0.3.1631 2025.03.21 1925b P P 8720 9663 2025.03.25 06:47:00.510 2025.03.25 06:47:09.230 2025.03.25 05:39:16.864 2025.03.25 05:39:26.527
23 5.0.3.1629 2025.03.18 506d7 P P 9346 8719 2025.03.20 09:46:58.415 2025.03.20 09:47:07.761 2025.03.20 08:39:18.806 2025.03.20 08:39:27.525
24 5.0.3.1628 2025.03.14 16d05 P P 9624 9740 2025.03.18 09:41:03.621 2025.03.18 09:41:13.245 2025.03.18 08:34:50.877 2025.03.18 08:35:00.617
25 5.0.3.1627 2025.02.26 4e218 P P 8907 8790 2025.03.13 10:00:46.826 2025.03.13 10:00:55.733 2025.03.13 08:52:38.213 2025.03.13 08:52:47.003
26 5.0.3.1624 2025.02.25 dc3b2 P P 9455 8637 2025.02.26 15:32:53.034 2025.02.26 15:33:02.489 2025.02.26 14:25:28.271 2025.02.26 14:25:36.908
27 5.0.2.1615 2025.02.20 4a726 P F 9313 2248 2025.02.25 08:46:44.956 2025.02.25 08:46:54.269 2025.02.25 07:39:15.475 2025.02.25 07:39:17.723
28 5.0.2.1615 2025.02.14 9cb76 P P 9493 9580 2025.02.15 04:14:16.854 2025.02.15 04:14:26.347 2025.02.15 03:09:04.604 2025.02.15 03:09:14.184
29 5.0.2.1577 2025.02.07 f50a2 P P 9310 9681 2025.02.14 06:26:58.650 2025.02.14 06:27:07.960 2025.02.14 05:22:54.645 2025.02.14 05:23:04.326
30 5.0.2.1577 2024.12.24 3c80e P P 9331 9544 2025.02.06 09:40:29.354 2025.02.06 09:40:38.685 2025.02.06 08:36:29.922 2025.02.06 08:36:39.466
31 5.0.2.1576 2024.12.17 646b0 P P 9330 8715 2024.12.24 09:23:35.776 2024.12.24 09:23:45.106 2024.12.24 08:19:41.588 2024.12.24 08:19:50.303
32 5.0.2.1575 2024.12.09 9af52 P P 9308 8726 2024.12.16 09:20:19.473 2024.12.16 09:20:28.781 2024.12.16 08:16:34.878 2024.12.16 08:16:43.604
33 5.0.2.1575 2024.12.08 63d39 P P 9137 8526 2024.12.09 15:09:39.773 2024.12.09 15:09:48.910 2024.12.09 14:10:53.481 2024.12.09 14:11:02.007
34 5.0.2.1571 2024.12.08 8d11a P P 9342 9368 2024.12.09 06:23:16.529 2024.12.09 06:23:25.871 2024.12.09 05:22:31.781 2024.12.09 05:22:41.149
35 5.0.2.1567 2024.12.07 b01a2 P P 8848 9477 2024.12.08 02:01:52.304 2024.12.08 02:02:01.152 2024.12.08 00:59:21.921 2024.12.08 00:59:31.398
36 5.0.2.1567 2024.12.02 6ae74 P P 8786 9497 2024.12.04 09:05:08.170 2024.12.04 09:05:16.956 2024.12.04 08:06:25.460 2024.12.04 08:06:34.957
37 5.0.2.1567 2024.11.26 56e63 P P 9525 8718 2024.11.30 09:11:18.435 2024.11.30 09:11:27.960 2024.11.30 08:08:08.359 2024.11.30 08:08:17.077
38 5.0.2.1567 2024.11.21 96f61 P P 8330 9705 2024.11.27 09:08:04.854 2024.11.27 09:08:13.184 2024.11.27 08:05:30.297 2024.11.27 08:05:40.002
39 5.0.2.1567 2024.11.18 e1289 P F 9271 2383 2024.11.21 09:26:27.240 2024.11.21 09:26:36.511 2024.11.21 08:21:39.285 2024.11.21 08:21:41.668
40 5.0.2.1533 2024.10.23 0ec43 P P 9262 8700 2024.11.18 09:02:19.402 2024.11.18 09:02:28.664 2024.11.18 07:59:00.012 2024.11.18 07:59:08.712
41 5.0.2.1533 2024.10.22 8af7a P P 8565 9026 2024.10.23 09:09:31.120 2024.10.23 09:09:39.685 2024.10.23 08:06:51.762 2024.10.23 08:07:00.788
42 5.0.2.1532 2024.10.15 36dc0 P P 9361 9568 2024.10.22 15:11:39.694 2024.10.22 15:11:49.055 2024.10.22 14:09:00.019 2024.10.22 14:09:09.587
43 5.0.2.1518 2024.10.04 259ba P P 9374 9564 2024.10.15 09:05:40.576 2024.10.15 09:05:49.950 2024.10.15 08:03:16.039 2024.10.15 08:03:25.603
44 5.0.2.1518 2024.09.26 703cd P P 9310 9705 2024.10.03 09:10:33.134 2024.10.03 09:10:42.444 2024.10.03 08:07:45.746 2024.10.03 08:07:55.451
45 5.0.2.1489 2024.08.31 994a6 P F 9471 2428 2024.09.26 09:29:39.839 2024.09.26 09:29:49.310 2024.09.26 08:24:14.603 2024.09.26 08:24:17.031
46 5.0.2.1476 2024.08.09 843ea P F 9575 2393 2024.09.01 09:18:37.952 2024.09.01 09:18:47.527 2024.09.01 08:11:17.915 2024.09.01 08:11:20.308
47 5.0.1.1454 2024.08.08 30f9f P P 9460 8752 2024.08.09 08:59:35.608 2024.08.09 08:59:45.068 2024.08.09 07:56:50.101 2024.08.09 07:56:58.853
48 5.0.1.1453 2024.08.07 ebbc3 P P 9453 9698 2024.08.08 20:13:57.400 2024.08.08 20:14:06.853 2024.08.08 19:10:39.426 2024.08.08 19:10:49.124
49 5.0.1.1453 2024.08.06 1b9d0 P P 9599 8782 2024.08.07 08:27:42.292 2024.08.07 08:27:51.891 2024.08.07 07:30:02.857 2024.08.07 07:30:11.639
50 5.0.1.1453 2024.07.30 48044 P P 8701 9534 2024.08.03 08:25:38.143 2024.08.03 08:25:46.844 2024.08.03 07:27:54.650 2024.08.03 07:28:04.184
51 5.0.1.1453 2024.07.28 8d956 P P 8637 8700 2024.07.30 08:06:23.995 2024.07.30 08:06:32.632 2024.07.30 07:10:18.725 2024.07.30 07:10:27.425
52 5.0.1.1429 2024.07.19 8ee90 P P 9495 9552 2024.07.27 08:05:00.858 2024.07.27 08:05:10.353 2024.07.27 07:09:24.894 2024.07.27 07:09:34.446
53 5.0.1.1428 2024.07.15 00392 P P 9472 9564 2024.07.19 08:00:28.052 2024.07.19 08:00:37.524 2024.07.19 07:04:55.132 2024.07.19 07:05:04.696
54 5.0.1.1428 2024.06.30 67a31 P P 9730 8880 2024.07.15 08:11:58.909 2024.07.15 08:12:08.639 2024.07.15 07:15:12.327 2024.07.15 07:15:21.207
55 5.0.1.1415 2024.06.12 f8731 P P 9786 8695 2024.06.22 05:10:21.610 2024.06.22 05:10:31.396 2024.06.22 04:15:22.195 2024.06.22 04:15:30.890
56 5.0.1.1415 2024.06.11 31d74 P P 9517 9548 2024.06.11 23:40:17.842 2024.06.11 23:40:27.359 2024.06.11 22:48:33.634 2024.06.11 22:48:43.182
57 5.0.1.1401 2024.06.05 f9b76 P P 9547 9595 2024.06.11 04:31:11.912 2024.06.11 04:31:21.459 2024.06.11 03:39:16.421 2024.06.11 03:39:26.016
58 5.0.1.1398 2024.05.10 5e3ce P P 9517 9705 2024.05.25 05:25:55.711 2024.05.25 05:26:05.228 2024.05.25 04:34:24.941 2024.05.25 04:34:34.646
59 5.0.1.1397 2024.05.09 ee2ef P P 9485 8673 2024.05.10 05:21:52.948 2024.05.10 05:22:02.433 2024.05.10 04:30:54.642 2024.05.10 04:31:03.315
60 5.0.1.1392 2024.04.29 7dbc2 P P 9500 9579 2024.05.09 17:11:36.459 2024.05.09 17:11:45.959 2024.05.09 16:20:25.674 2024.05.09 16:20:35.253
61 5.0.1.1386 2024.04.25 c0328 P P 9705 9548 2024.04.29 05:20:54.421 2024.04.29 05:21:04.126 2024.04.29 04:29:58.215 2024.04.29 04:30:07.763
62 5.0.1.1386 2024.04.20 80571 P P 8568 9599 2024.04.25 05:23:27.526 2024.04.25 05:23:36.094 2024.04.25 04:31:46.167 2024.04.25 04:31:55.766
63 5.0.1.1378 2024.04.07 5292b P F 9673 2282 2024.04.20 05:43:14.297 2024.04.20 05:43:23.970 2024.04.20 04:47:39.559 2024.04.20 04:47:41.841
64 5.0.1.1346 2024.03.16 fe320 P P 9251 8485 2024.04.07 03:41:38.402 2024.04.07 03:41:47.653 2024.04.07 02:55:05.232 2024.04.07 02:55:13.717
65 5.0.1.1346 2024.03.02 da408 P P 9297 8453 2024.03.25 22:29:15.825 2024.03.25 22:29:25.122 2024.03.25 21:42:49.038 2024.03.25 21:42:57.491
66 5.0.1.1340 2024.02.17 08a71 P P 9234 8484 2024.03.25 23:58:59.195 2024.03.25 23:59:08.429 2024.03.25 23:12:33.219 2024.03.25 23:12:41.703
67 5.0.1.1325 2024.02.06 c98fb P F 9109 2296 2024.03.26 02:30:26.739 2024.03.26 02:30:35.848 2024.03.26 01:40:30.063 2024.03.26 01:40:32.359
68 5.0.1.1325 2024.02.02 1d438 P F 9313 2203 2024.03.26 07:47:50.660 2024.03.26 07:47:59.973 2024.03.26 06:57:00.861 2024.03.26 06:57:03.064
69 5.0.1.1325 2024.01.26 cffb6 P F 9250 2281 2024.03.26 10:13:37.101 2024.03.26 10:13:46.351 2024.03.26 09:23:41.485 2024.03.26 09:23:43.766
70 5.0.1.1325 2024.01.26 d3810 P F 9313 2296 2024.03.26 12:05:18.835 2024.03.26 12:05:28.148 2024.03.26 11:15:30.963 2024.03.26 11:15:33.259
71 5.0.1.1318 2024.01.21 a7ca3 P P 9250 9485 2024.03.26 13:34:20.502 2024.03.26 13:34:29.752 2024.03.26 12:47:59.272 2024.03.26 12:48:08.757
72 5.0.1.1318 2024.01.21 d429d P P 9078 9468 2024.03.26 15:15:57.105 2024.03.26 15:16:06.183 2024.03.26 14:29:38.899 2024.03.26 14:29:48.367
73 5.0.1.1318 2024.01.21 f1ab5 P P 9062 9359 2024.03.26 17:31:56.497 2024.03.26 17:32:05.559 2024.03.26 16:45:34.969 2024.03.26 16:45:44.328
74 5.0.1.1318 2024.01.20 46722 P P 9250 9453 2024.03.26 18:58:53.982 2024.03.26 18:59:03.232 2024.03.26 18:12:40.219 2024.03.26 18:12:49.672

Elapsed time, ms. Chart for last 74 runs:

Last commits information (all timestamps in UTC):