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:

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

    @pytest.mark.replication
    @pytest.mark.version('>=4.0.3')
    def test_1(act_db_main: Action,  act_db_repl: Action, db_main_nbk0: Path, db_main_nbk1: Path, capsys):
    
        out_prep, out_main, out_drop = '', '', ''
    
        rdb_backup_history_init = []
        rdb_backup_history_curr = []
        rdb_bkp_sttm = 'select rb.rdb$guid as db_guid from rdb$backup_history rb'
    
        # 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_disallow_rdb_backup_history_replication.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 4.0.6.3189 2025.02.25 1a1a5 P P 11963 11535 2025.06.27 13:25:10.064 2025.06.27 13:25:22.027 2025.06.27 12:24:09.631 2025.06.27 12:24:21.166
2 4.0.6.3184 2025.02.24 9388c P F 5605 2394 2025.02.25 11:06:25.861 2025.02.25 11:06:31.466 2025.02.25 10:03:13.613 2025.02.25 10:03:16.007
3 4.0.6.3183 2025.02.17 e4762 P P 11608 8455 2025.02.24 11:38:28.902 2025.02.24 11:38:40.510 2025.02.24 10:37:34.561 2025.02.24 10:37:43.016
4 4.0.6.3169 2024.12.13 42cc1 P P 8915 5957 2025.02.14 08:26:15.077 2025.02.14 08:26:23.992 2025.02.14 07:25:13.994 2025.02.14 07:25:19.951
5 4.0.6.3169 2024.12.08 50eb6 P P 9625 8468 2024.12.11 11:22:48.562 2024.12.11 11:22:58.187 2024.12.11 10:22:09.597 2024.12.11 10:22:18.065
6 4.0.6.3168 2024.12.07 98d69 P P 5694 8852 2024.12.08 04:06:27.188 2024.12.08 04:06:32.882 2024.12.08 03:03:54.952 2024.12.08 03:04:03.804
7 4.0.6.3168 2024.12.05 cee43 P P 8648 9259 2024.12.06 04:09:44.325 2024.12.06 04:09:52.973 2024.12.06 03:08:25.881 2024.12.06 03:08:35.140
8 4.0.6.3168 2024.11.28 48149 P P 12113 6010 2024.12.03 11:02:51.007 2024.12.03 11:03:03.120 2024.12.03 10:02:50.125 2024.12.03 10:02:56.135
9 4.0.6.3163 2024.10.30 832db P P 5635 12395 2024.11.28 11:01:31.014 2024.11.28 11:01:36.649 2024.11.28 10:01:42.465 2024.11.28 10:01:54.860
10 4.0.6.3163 2024.10.16 2bb10 P P 8378 9172 2024.10.30 11:10:33.184 2024.10.30 11:10:41.562 2024.10.30 10:10:35.632 2024.10.30 10:10:44.804
11 4.0.6.3147 2024.09.10 a4d11 P F 8938 2394 2024.10.16 04:18:05.594 2024.10.16 04:18:14.532 2024.10.16 03:15:11.685 2024.10.16 03:15:14.079
12 4.0.6.3147 2024.08.31 4655b P P 6733 9521 2024.09.10 11:16:21.795 2024.09.10 11:16:28.528 2024.09.10 10:11:53.742 2024.09.10 10:12:03.263
13 4.0.6.3140 2024.08.16 1dd8b P F 8397 2217 2024.09.01 11:38:46.865 2024.09.01 11:38:55.262 2024.09.01 10:32:49.849 2024.09.01 10:32:52.066
14 4.0.6.3140 2024.08.09 34747 P P 6654 9230 2024.08.16 11:19:13.256 2024.08.16 11:19:19.910 2024.08.16 10:15:06.862 2024.08.16 10:15:16.092
15 4.0.5.3110 2024.08.06 f851c P P 9441 8308 2024.08.09 10:57:56.840 2024.08.09 10:58:06.281 2024.08.09 09:54:43.161 2024.08.09 09:54:51.469
16 4.0.5.3110 2024.07.30 c6527 P P 9830 9191 2024.08.06 06:33:25.979 2024.08.06 06:33:35.809 2024.08.06 05:36:01.013 2024.08.06 05:36:10.204
17 4.0.5.3109 2024.06.11 6addf P P 5649 8576 2024.07.30 09:50:58.440 2024.07.30 09:51:04.089 2024.07.30 08:55:41.027 2024.07.30 08:55:49.603
18 4.0.5.3097 2024.05.09 27fa6 P P 6407 5735 2024.06.11 06:08:06.193 2024.06.11 06:08:12.600 2024.06.11 05:16:51.791 2024.06.11 05:16:57.526
19 4.0.5.3091 2024.04.29 bd0aa P P 6439 5704 2024.05.09 18:47:08.044 2024.05.09 18:47:14.483 2024.05.09 17:56:22.126 2024.05.09 17:56:27.830
20 4.0.5.3089 2024.04.20 9eb9b P P 6345 6688 2024.04.29 06:55:36.641 2024.04.29 06:55:42.986 2024.04.29 06:05:07.076 2024.04.29 06:05:13.764
21 4.0.5.3083 2024.04.06 300f9 P P 6314 5626 2024.04.20 07:19:00.673 2024.04.20 07:19:06.987 2024.04.20 06:28:14.247 2024.04.20 06:28:19.873
22 4.0.5.3052 2024.03.16 0f422 P P 6251 6641 2024.04.05 03:45:02.962 2024.04.05 03:45:09.213 2024.04.05 02:56:03.701 2024.04.05 02:56:10.342
23 4.0.5.3052 2024.03.16 ce273 P P 5937 6656 2024.03.29 15:10:09.537 2024.03.29 15:10:15.474 2024.03.29 14:23:57.516 2024.03.29 14:24:04.172
24 4.0.5.3052 2024.02.12 cd058 P P 5968 6687 2024.03.29 16:38:34.548 2024.03.29 16:38:40.516 2024.03.29 15:52:22.998 2024.03.29 15:52:29.685
25 4.0.5.3052 2024.02.07 be290 P P 5953 5516 2024.03.29 18:50:04.469 2024.03.29 18:50:10.422 2024.03.29 18:03:52.946 2024.03.29 18:03:58.462
26 4.0.5.3052 2024.02.07 6409b P P 6220 6500 2024.03.29 20:34:13.767 2024.03.29 20:34:19.987 2024.03.29 19:48:05.070 2024.03.29 19:48:11.570
27 4.0.5.3052 2024.02.02 bbc3f P P 6187 6375 2024.03.29 22:43:19.998 2024.03.29 22:43:26.185 2024.03.29 21:57:05.111 2024.03.29 21:57:11.486
28 4.0.5.3052 2024.01.26 48b7c P P 6141 6671 2024.03.30 00:10:32.399 2024.03.30 00:10:38.540 2024.03.29 23:24:18.147 2024.03.29 23:24:24.818
29 4.0.5.3052 2024.01.26 9a7b3 P P 6031 6672 2024.03.30 07:11:31.206 2024.03.30 07:11:37.237 2024.03.30 06:25:17.268 2024.03.30 06:25:23.940
30 4.0.5.3049 2024.01.25 f6b9d P P 5234 6406 2024.03.30 09:18:36.981 2024.03.30 09:18:42.215 2024.03.30 08:32:47.577 2024.03.30 08:32:53.983
31 4.0.5.3049 2024.01.08 b67ce P P 5718 5875 2024.03.30 11:06:40.202 2024.03.30 11:06:45.920 2024.03.30 10:11:22.791 2024.03.30 10:11:28.666
32 4.0.5.3049 2024.01.08 97577 P P 5609 5609 2024.03.30 16:11:28.756 2024.03.30 16:11:34.365 2024.03.30 15:16:35.186 2024.03.30 15:16:40.795
33 4.0.5.3049 2024.01.05 2d8b0 P P 5625 5719 2024.03.30 19:29:17.751 2024.03.30 19:29:23.376 2024.03.30 18:34:36.305 2024.03.30 18:34:42.024
34 4.0.5.3049 2024.01.04 431e5 P P 6922 5593 2024.03.30 21:07:29.433 2024.03.30 21:07:36.355 2024.03.30 20:21:50.444 2024.03.30 20:21:56.037
35 4.0.5.3049 2024.01.04 e33b4 P P 5968 6562 2024.03.30 23:19:23.294 2024.03.30 23:19:29.262 2024.03.30 22:33:37.378 2024.03.30 22:33:43.940
36 4.0.5.3049 2024.01.04 207ef P P 6235 6609 2024.03.31 01:02:54.476 2024.03.31 01:03:00.711 2024.03.31 00:17:05.406 2024.03.31 00:17:12.015
37 4.0.5.3034 2023.12.12 c05ff P P 6265 5468 2024.03.31 06:55:31.694 2024.03.31 06:55:37.959 2024.03.31 06:09:37.067 2024.03.31 06:09:42.535
38 4.0.5.3034 2023.12.12 3a40e P P 6250 5578 2024.03.31 15:30:15.083 2024.03.31 15:30:21.333 2024.03.31 14:44:22.372 2024.03.31 14:44:27.950
39 4.0.5.3034 2023.12.02 5934b P P 6250 6500 2024.03.31 10:03:14.291 2024.03.31 10:03:20.541 2024.03.31 09:17:22.824 2024.03.31 09:17:29.324
40 4.0.5.3034 2023.12.02 7ea5a P P 6265 6563 2024.03.31 17:54:34.420 2024.03.31 17:54:40.685 2024.03.31 17:08:41.944 2024.03.31 17:08:48.507
41 4.0.5.3034 2023.11.30 4fbc9 P P 6015 6609 2024.03.31 19:55:28.563 2024.03.31 19:55:34.578 2024.03.31 19:09:33.107 2024.03.31 19:09:39.716

Elapsed time, ms. Chart for last 41 runs:

Last commits information (all timestamps in UTC):