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

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 5490 6088 2025.06.28 13:28:10.224 2025.06.28 13:28:15.714 2025.06.28 12:27:19.424 2025.06.28 12:27:25.512
2 4.0.6.3184 2025.02.24 9388c P F 5592 2185 2025.02.25 11:06:47.486 2025.02.25 11:06:53.078 2025.02.25 10:03:20.590 2025.02.25 10:03:22.775
3 4.0.6.3183 2025.02.17 e4762 P P 6519 6075 2025.02.24 11:38:55.503 2025.02.24 11:39:02.022 2025.02.24 10:37:58.805 2025.02.24 10:38:04.880
4 4.0.6.3169 2024.12.13 42cc1 P P 6526 6094 2025.02.14 08:26:39.008 2025.02.14 08:26:45.534 2025.02.14 07:25:34.873 2025.02.14 07:25:40.967
5 4.0.6.3169 2024.12.08 50eb6 P P 6524 6090 2024.12.11 11:23:13.212 2024.12.11 11:23:19.736 2024.12.11 10:22:33.839 2024.12.11 10:22:39.929
6 4.0.6.3168 2024.12.07 98d69 P P 6570 6069 2024.12.08 04:06:48.174 2024.12.08 04:06:54.744 2024.12.08 03:04:18.868 2024.12.08 03:04:24.937
7 4.0.6.3168 2024.12.05 cee43 P P 6907 6194 2024.12.06 04:10:07.577 2024.12.06 04:10:14.484 2024.12.06 03:08:50.075 2024.12.06 03:08:56.269
8 4.0.6.3168 2024.11.28 48149 P P 5544 6070 2024.12.03 11:03:18.178 2024.12.03 11:03:23.722 2024.12.03 10:03:11.103 2024.12.03 10:03:17.173
9 4.0.6.3163 2024.10.30 832db P P 6534 6077 2024.11.28 11:01:51.930 2024.11.28 11:01:58.464 2024.11.28 10:02:09.611 2024.11.28 10:02:15.688
10 4.0.6.3163 2024.10.16 2bb10 P P 6541 6086 2024.10.30 11:10:56.674 2024.10.30 11:11:03.215 2024.10.30 10:10:59.779 2024.10.30 10:11:05.865
11 4.0.6.3147 2024.09.10 a4d11 P F 5496 2396 2024.10.16 04:18:29.540 2024.10.16 04:18:35.036 2024.10.16 03:15:18.690 2024.10.16 03:15:21.086
12 4.0.6.3147 2024.08.31 4655b P P 5243 6096 2024.09.10 11:16:43.886 2024.09.10 11:16:49.129 2024.09.10 10:12:18.018 2024.09.10 10:12:24.114
13 4.0.6.3140 2024.08.16 1dd8b P F 5508 2210 2024.09.01 11:39:11.270 2024.09.01 11:39:16.778 2024.09.01 10:32:56.879 2024.09.01 10:32:59.089
14 4.0.6.3140 2024.08.09 34747 P P 6636 6084 2024.08.16 11:19:35.120 2024.08.16 11:19:41.756 2024.08.16 10:15:31.010 2024.08.16 10:15:37.094
15 4.0.5.3110 2024.08.06 f851c P P 5609 6080 2024.08.09 10:58:21.449 2024.08.09 10:58:27.058 2024.08.09 09:55:07.269 2024.08.09 09:55:13.349
16 4.0.5.3110 2024.07.30 c6527 P P 5578 6095 2024.08.06 06:33:51.356 2024.08.06 06:33:56.934 2024.08.06 05:36:26.167 2024.08.06 05:36:32.262
17 4.0.5.3109 2024.06.11 6addf P P 6581 6076 2024.07.30 09:51:19.307 2024.07.30 09:51:25.888 2024.07.30 08:56:05.350 2024.07.30 08:56:11.426
18 4.0.5.3097 2024.05.09 27fa6 P P 5720 6157 2024.06.11 06:08:28.367 2024.06.11 06:08:34.087 2024.06.11 05:17:13.560 2024.06.11 05:17:19.717
19 4.0.5.3091 2024.04.29 bd0aa P P 6693 6141 2024.05.09 18:47:29.862 2024.05.09 18:47:36.555 2024.05.09 17:56:43.817 2024.05.09 17:56:49.958
20 4.0.5.3089 2024.04.20 9eb9b P P 7704 6141 2024.04.29 06:55:59.581 2024.04.29 06:56:07.285 2024.04.29 06:05:29.782 2024.04.29 06:05:35.923
21 4.0.5.3083 2024.04.06 300f9 P P 6688 6141 2024.04.20 07:19:22.426 2024.04.20 07:19:29.114 2024.04.20 06:28:35.734 2024.04.20 06:28:41.875
22 4.0.5.3052 2024.03.16 0f422 P P 5688 6110 2024.04.05 03:45:25.605 2024.04.05 03:45:31.293 2024.04.05 02:56:26.266 2024.04.05 02:56:32.376
23 4.0.5.3052 2024.03.16 ce273 P P 5375 5953 2024.03.29 15:10:31.071 2024.03.29 15:10:36.446 2024.03.29 14:24:19.690 2024.03.29 14:24:25.643
24 4.0.5.3052 2024.02.12 cd058 P P 5374 5937 2024.03.29 16:38:56.113 2024.03.29 16:39:01.487 2024.03.29 15:52:44.219 2024.03.29 15:52:50.156
25 4.0.5.3052 2024.02.07 be290 P P 5375 5969 2024.03.29 18:50:26.018 2024.03.29 18:50:31.393 2024.03.29 18:04:13.855 2024.03.29 18:04:19.824
26 4.0.5.3052 2024.02.07 6409b P P 6375 5968 2024.03.29 20:34:34.568 2024.03.29 20:34:40.943 2024.03.29 19:48:27.104 2024.03.29 19:48:33.072
27 4.0.5.3052 2024.02.02 bbc3f P P 6375 5953 2024.03.29 22:43:40.766 2024.03.29 22:43:47.141 2024.03.29 21:57:27.020 2024.03.29 21:57:32.973
28 4.0.5.3052 2024.01.26 48b7c P P 5375 6937 2024.03.30 00:10:54.292 2024.03.30 00:10:59.667 2024.03.29 23:24:39.305 2024.03.29 23:24:46.242
29 4.0.5.3052 2024.01.26 9a7b3 P P 5406 5938 2024.03.30 07:11:52.958 2024.03.30 07:11:58.364 2024.03.30 06:25:38.489 2024.03.30 06:25:44.427
30 4.0.5.3049 2024.01.25 f6b9d P P 6374 5937 2024.03.30 09:18:57.780 2024.03.30 09:19:04.154 2024.03.30 08:33:09.517 2024.03.30 08:33:15.454
31 4.0.5.3049 2024.01.08 b67ce P P 5796 6078 2024.03.30 11:07:01.595 2024.03.30 11:07:07.391 2024.03.30 10:11:44.371 2024.03.30 10:11:50.449
32 4.0.5.3049 2024.01.08 97577 P P 5719 6063 2024.03.30 16:11:49.930 2024.03.30 16:11:55.649 2024.03.30 15:16:56.438 2024.03.30 15:17:02.501
33 4.0.5.3049 2024.01.05 2d8b0 P P 5781 6047 2024.03.30 19:29:38.956 2024.03.30 19:29:44.737 2024.03.30 18:34:57.667 2024.03.30 18:35:03.714
34 4.0.5.3049 2024.01.04 431e5 P P 6375 5937 2024.03.30 21:07:50.904 2024.03.30 21:07:57.279 2024.03.30 20:22:11.434 2024.03.30 20:22:17.371
35 4.0.5.3049 2024.01.04 e33b4 P P 5375 5938 2024.03.30 23:19:44.811 2024.03.30 23:19:50.186 2024.03.30 22:33:59.474 2024.03.30 22:34:05.412
36 4.0.5.3049 2024.01.04 207ef P P 6375 6953 2024.03.31 01:03:15.260 2024.03.31 01:03:21.635 2024.03.31 00:17:26.549 2024.03.31 00:17:33.502
37 4.0.5.3034 2023.12.12 c05ff P P 6434 5922 2024.03.31 06:55:52.587 2024.03.31 06:55:59.021 2024.03.31 06:09:57.897 2024.03.31 06:10:03.819
38 4.0.5.3034 2023.12.12 3a40e P P 6390 5968 2024.03.31 15:30:35.898 2024.03.31 15:30:42.288 2024.03.31 14:44:43.359 2024.03.31 14:44:49.327
39 4.0.5.3034 2023.12.02 5934b P P 6375 5937 2024.03.31 10:03:36.262 2024.03.31 10:03:42.637 2024.03.31 09:17:44.795 2024.03.31 09:17:50.732
40 4.0.5.3034 2023.12.02 7ea5a P P 5391 5937 2024.03.31 17:54:56.250 2024.03.31 17:55:01.641 2024.03.31 17:09:03.978 2024.03.31 17:09:09.915
41 4.0.5.3034 2023.11.30 4fbc9 P P 5390 6984 2024.03.31 19:55:50.315 2024.03.31 19:55:55.705 2024.03.31 19:09:54.250 2024.03.31 19:10:01.234

Elapsed time, ms. Chart for last 41 runs:

Last commits information (all timestamps in UTC):