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

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 6560 7075 2025.06.28 13:30:12.189 2025.06.28 13:30:18.749 2025.06.28 12:29:23.233 2025.06.28 12:29:30.308
2 4.0.6.3184 2025.02.24 9388c P F 6588 2376 2025.02.25 11:08:49.797 2025.02.25 11:08:56.385 2025.02.25 10:03:36.798 2025.02.25 10:03:39.174
3 4.0.6.3183 2025.02.17 e4762 P P 6577 6109 2025.02.24 11:40:55.518 2025.02.24 11:41:02.095 2025.02.24 10:40:02.463 2025.02.24 10:40:08.572
4 4.0.6.3169 2024.12.13 42cc1 P P 6534 6077 2025.02.14 08:28:38.161 2025.02.14 08:28:44.695 2025.02.14 07:27:40.034 2025.02.14 07:27:46.111
5 4.0.6.3169 2024.12.08 50eb6 P P 6522 6106 2024.12.11 11:25:05.438 2024.12.11 11:25:11.960 2024.12.11 10:24:34.360 2024.12.11 10:24:40.466
6 4.0.6.3168 2024.12.07 98d69 P P 6575 6162 2024.12.08 04:07:54.146 2024.12.08 04:08:00.721 2024.12.08 03:05:26.940 2024.12.08 03:05:33.102
7 4.0.6.3168 2024.12.05 cee43 P P 6648 6091 2024.12.06 04:11:13.072 2024.12.06 04:11:19.720 2024.12.06 03:10:00.714 2024.12.06 03:10:06.805
8 4.0.6.3168 2024.11.28 48149 P P 6616 6598 2024.12.03 11:04:23.359 2024.12.03 11:04:29.975 2024.12.03 10:04:18.912 2024.12.03 10:04:25.510
9 4.0.6.3163 2024.10.30 832db P P 6581 6115 2024.11.28 11:02:56.902 2024.11.28 11:03:03.483 2024.11.28 10:03:20.403 2024.11.28 10:03:26.518
10 4.0.6.3163 2024.10.16 2bb10 P P 6566 7139 2024.10.30 11:12:02.193 2024.10.30 11:12:08.759 2024.10.30 10:12:07.849 2024.10.30 10:12:14.988
11 4.0.6.3147 2024.09.10 a4d11 P F 6617 2393 2024.10.16 04:19:35.011 2024.10.16 04:19:41.628 2024.10.16 03:15:30.297 2024.10.16 03:15:32.690
12 4.0.6.3147 2024.08.31 4655b P P 6820 7103 2024.09.10 11:17:49.297 2024.09.10 11:17:56.117 2024.09.10 10:13:26.082 2024.09.10 10:13:33.185
13 4.0.6.3140 2024.08.16 1dd8b P F 6594 2192 2024.09.01 11:40:16.120 2024.09.01 11:40:22.714 2024.09.01 10:33:08.484 2024.09.01 10:33:10.676
14 4.0.6.3140 2024.08.09 34747 P P 6718 6097 2024.08.16 11:20:39.927 2024.08.16 11:20:46.645 2024.08.16 10:16:39.002 2024.08.16 10:16:45.099
15 4.0.5.3110 2024.08.06 f851c P P 6693 6180 2024.08.09 10:59:26.353 2024.08.09 10:59:33.046 2024.08.09 09:56:18.631 2024.08.09 09:56:24.811
16 4.0.5.3110 2024.07.30 c6527 P P 6718 7107 2024.08.06 06:34:56.185 2024.08.06 06:35:02.903 2024.08.06 05:37:34.646 2024.08.06 05:37:41.753
17 4.0.5.3109 2024.06.11 6addf P P 6692 6168 2024.07.30 09:52:21.426 2024.07.30 09:52:28.118 2024.07.30 08:57:13.701 2024.07.30 08:57:19.869
18 4.0.5.3097 2024.05.09 27fa6 P P 6797 7173 2024.06.11 06:09:33.516 2024.06.11 06:09:40.313 2024.06.11 05:18:24.553 2024.06.11 05:18:31.726
19 4.0.5.3091 2024.04.29 bd0aa P P 6741 6157 2024.05.09 18:48:36.052 2024.05.09 18:48:42.793 2024.05.09 17:57:54.967 2024.05.09 17:58:01.124
20 4.0.5.3089 2024.04.20 9eb9b P P 6798 7189 2024.04.29 06:57:12.105 2024.04.29 06:57:18.903 2024.04.29 06:06:40.134 2024.04.29 06:06:47.323
21 4.0.5.3083 2024.04.06 300f9 P P 6766 6172 2024.04.20 07:20:28.277 2024.04.20 07:20:35.043 2024.04.20 06:29:46.711 2024.04.20 06:29:52.883
22 4.0.5.3052 2024.03.16 0f422 P P 6735 7094 2024.04.05 03:46:31.300 2024.04.05 03:46:38.035 2024.04.05 02:57:40.759 2024.04.05 02:57:47.853
23 4.0.5.3052 2024.03.16 ce273 P P 6391 6985 2024.03.29 15:11:32.593 2024.03.29 15:11:38.984 2024.03.29 14:25:29.558 2024.03.29 14:25:36.543
24 4.0.5.3052 2024.02.12 cd058 P P 6406 6968 2024.03.29 16:39:57.525 2024.03.29 16:40:03.931 2024.03.29 15:53:51.821 2024.03.29 15:53:58.789
25 4.0.5.3052 2024.02.07 be290 P P 6391 7026 2024.03.29 18:51:27.572 2024.03.29 18:51:33.963 2024.03.29 18:05:21.276 2024.03.29 18:05:28.302
26 4.0.5.3052 2024.02.07 6409b P P 6400 6984 2024.03.29 20:35:37.155 2024.03.29 20:35:43.555 2024.03.29 19:49:36.861 2024.03.29 19:49:43.845
27 4.0.5.3052 2024.02.02 bbc3f P P 6405 6031 2024.03.29 22:44:46.024 2024.03.29 22:44:52.429 2024.03.29 21:58:37.012 2024.03.29 21:58:43.043
28 4.0.5.3052 2024.01.26 48b7c P P 6406 6937 2024.03.30 00:11:55.877 2024.03.30 00:12:02.283 2024.03.29 23:25:50.016 2024.03.29 23:25:56.953
29 4.0.5.3052 2024.01.26 9a7b3 P P 6406 7000 2024.03.30 07:12:54.715 2024.03.30 07:13:01.121 2024.03.30 06:26:45.903 2024.03.30 06:26:52.903
30 4.0.5.3049 2024.01.25 f6b9d P P 6390 7000 2024.03.30 09:19:59.943 2024.03.30 09:20:06.333 2024.03.30 08:34:19.248 2024.03.30 08:34:26.248
31 4.0.5.3049 2024.01.08 b67ce P P 6796 6109 2024.03.30 11:08:06.868 2024.03.30 11:08:13.664 2024.03.30 10:12:54.770 2024.03.30 10:13:00.879
32 4.0.5.3049 2024.01.08 97577 P P 6812 6093 2024.03.30 16:12:55.297 2024.03.30 16:13:02.109 2024.03.30 15:18:06.743 2024.03.30 15:18:12.836
33 4.0.5.3049 2024.01.05 2d8b0 P P 6827 6078 2024.03.30 19:30:41.198 2024.03.30 19:30:48.025 2024.03.30 18:36:04.983 2024.03.30 18:36:11.061
34 4.0.5.3049 2024.01.04 431e5 P P 6391 6969 2024.03.30 21:08:53.098 2024.03.30 21:08:59.489 2024.03.30 20:23:18.835 2024.03.30 20:23:25.804
35 4.0.5.3049 2024.01.04 e33b4 P P 6375 6984 2024.03.30 23:20:46.224 2024.03.30 23:20:52.599 2024.03.30 22:35:09.279 2024.03.30 22:35:16.263
36 4.0.5.3049 2024.01.04 207ef P P 6406 7000 2024.03.31 01:04:17.282 2024.03.31 01:04:23.688 2024.03.31 00:18:37.119 2024.03.31 00:18:44.119
37 4.0.5.3034 2023.12.12 c05ff P P 6453 6937 2024.03.31 06:56:51.731 2024.03.31 06:56:58.184 2024.03.31 06:11:08.405 2024.03.31 06:11:15.342
38 4.0.5.3034 2023.12.12 3a40e P P 6390 6999 2024.03.31 15:31:38.108 2024.03.31 15:31:44.498 2024.03.31 14:45:50.663 2024.03.31 14:45:57.662
39 4.0.5.3034 2023.12.02 5934b P P 6390 6953 2024.03.31 10:04:35.050 2024.03.31 10:04:41.440 2024.03.31 09:18:54.631 2024.03.31 09:19:01.584
40 4.0.5.3034 2023.12.02 7ea5a P P 6390 6937 2024.03.31 17:55:57.648 2024.03.31 17:56:04.038 2024.03.31 17:10:13.892 2024.03.31 17:10:20.829
41 4.0.5.3034 2023.11.30 4fbc9 P P 6406 6985 2024.03.31 19:56:48.868 2024.03.31 19:56:55.274 2024.03.31 19:11:04.929 2024.03.31 19:11:11.914

Elapsed time, ms. Chart for last 41 runs:

Last commits information (all timestamps in UTC):