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

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 8930 9088 2025.06.30 13:24:14.967 2025.06.30 13:24:23.897 2025.06.30 12:23:22.431 2025.06.30 12:23:31.519
2 4.0.6.3184 2025.02.24 9388c P F 10187 2200 2025.02.25 11:05:56.815 2025.02.25 11:06:07.002 2025.02.25 10:03:04.457 2025.02.25 10:03:06.657
3 4.0.6.3183 2025.02.17 e4762 P P 8948 10134 2025.02.24 11:38:00.091 2025.02.24 11:38:09.039 2025.02.24 10:37:05.305 2025.02.24 10:37:15.439
4 4.0.6.3169 2024.12.13 42cc1 P P 9018 10055 2025.02.14 08:25:46.282 2025.02.14 08:25:55.300 2025.02.14 07:24:44.889 2025.02.14 07:24:54.944
5 4.0.6.3169 2024.12.08 50eb6 P P 9140 10231 2024.12.11 11:22:20.589 2024.12.11 11:22:29.729 2024.12.11 10:21:40.280 2024.12.11 10:21:50.511
6 4.0.6.3168 2024.12.07 98d69 P P 10312 10325 2024.12.08 04:05:57.691 2024.12.08 04:06:08.003 2024.12.08 03:03:25.502 2024.12.08 03:03:35.827
7 4.0.6.3168 2024.12.05 cee43 P P 9184 9242 2024.12.06 04:09:14.998 2024.12.06 04:09:24.182 2024.12.06 03:07:57.538 2024.12.06 03:08:06.780
8 4.0.6.3168 2024.11.28 48149 P P 9086 10064 2024.12.03 11:02:22.202 2024.12.03 11:02:31.288 2024.12.03 10:02:20.931 2024.12.03 10:02:30.995
9 4.0.6.3163 2024.10.30 832db P P 8850 10542 2024.11.28 11:01:02.312 2024.11.28 11:01:11.162 2024.11.28 10:01:12.890 2024.11.28 10:01:23.432
10 4.0.6.3163 2024.10.16 2bb10 P P 9082 9241 2024.10.30 11:10:04.355 2024.10.30 11:10:13.437 2024.10.30 10:10:07.046 2024.10.30 10:10:16.287
11 4.0.6.3147 2024.09.10 a4d11 P F 8940 2406 2024.10.16 04:17:36.953 2024.10.16 04:17:45.893 2024.10.16 03:15:02.466 2024.10.16 03:15:04.872
12 4.0.6.3147 2024.08.31 4655b P P 9145 9193 2024.09.10 11:15:53.674 2024.09.10 11:16:02.819 2024.09.10 10:11:25.534 2024.09.10 10:11:34.727
13 4.0.6.3140 2024.08.16 1dd8b P F 9147 2353 2024.09.01 11:38:17.968 2024.09.01 11:38:27.115 2024.09.01 10:32:40.472 2024.09.01 10:32:42.825
14 4.0.6.3140 2024.08.09 34747 P P 10300 10183 2024.08.16 11:18:43.988 2024.08.16 11:18:54.288 2024.08.16 10:14:37.575 2024.08.16 10:14:47.758
15 4.0.5.3110 2024.08.06 f851c P P 10115 10147 2024.08.09 10:57:27.125 2024.08.09 10:57:37.240 2024.08.09 09:54:13.808 2024.08.09 09:54:23.955
16 4.0.5.3110 2024.07.30 c6527 P P 12765 9317 2024.08.06 06:32:54.236 2024.08.06 06:33:07.001 2024.08.06 05:35:32.414 2024.08.06 05:35:41.731
17 4.0.5.3109 2024.06.11 6addf P P 10199 10109 2024.07.30 09:50:28.999 2024.07.30 09:50:39.198 2024.07.30 08:55:11.889 2024.07.30 08:55:21.998
18 4.0.5.3097 2024.05.09 27fa6 P P 10876 11017 2024.06.11 06:07:30.392 2024.06.11 06:07:41.268 2024.06.11 05:16:13.521 2024.06.11 05:16:24.538
19 4.0.5.3091 2024.04.29 bd0aa P P 13681 11017 2024.05.09 18:46:26.598 2024.05.09 18:46:40.279 2024.05.09 17:55:43.934 2024.05.09 17:55:54.951
20 4.0.5.3089 2024.04.20 9eb9b P P 13548 11002 2024.04.29 06:54:56.059 2024.04.29 06:55:09.607 2024.04.29 06:04:30.708 2024.04.29 06:04:41.710
21 4.0.5.3083 2024.04.06 300f9 P P 13830 13455 2024.04.20 07:18:18.372 2024.04.20 07:18:32.202 2024.04.20 06:27:33.586 2024.04.20 06:27:47.041
22 4.0.5.3052 2024.03.16 0f422 P P 10126 9860 2024.04.05 03:44:26.083 2024.04.05 03:44:36.209 2024.04.05 02:55:30.182 2024.04.05 02:55:40.042
23 4.0.5.3052 2024.03.16 ce273 P P 9156 9313 2024.03.29 15:09:41.487 2024.03.29 15:09:50.643 2024.03.29 14:23:29.793 2024.03.29 14:23:39.106
24 4.0.5.3052 2024.02.12 cd058 P P 9188 9344 2024.03.29 16:38:06.404 2024.03.29 16:38:15.592 2024.03.29 15:51:55.276 2024.03.29 15:52:04.620
25 4.0.5.3052 2024.02.07 be290 P P 9172 8437 2024.03.29 18:49:36.309 2024.03.29 18:49:45.481 2024.03.29 18:03:25.068 2024.03.29 18:03:33.505
26 4.0.5.3052 2024.02.07 6409b P P 9219 9344 2024.03.29 20:33:45.670 2024.03.29 20:33:54.889 2024.03.29 19:47:37.239 2024.03.29 19:47:46.583
27 4.0.5.3052 2024.02.02 bbc3f P P 9187 9328 2024.03.29 22:42:51.870 2024.03.29 22:43:01.057 2024.03.29 21:56:37.233 2024.03.29 21:56:46.561
28 4.0.5.3052 2024.01.26 48b7c P P 8203 8704 2024.03.30 00:10:05.209 2024.03.30 00:10:13.412 2024.03.29 23:23:51.112 2024.03.29 23:23:59.816
29 4.0.5.3052 2024.01.26 9a7b3 P P 9187 8672 2024.03.30 07:11:03.797 2024.03.30 07:11:12.984 2024.03.30 06:24:50.140 2024.03.30 06:24:58.812
30 4.0.5.3049 2024.01.25 f6b9d P P 9235 9359 2024.03.30 09:18:08.821 2024.03.30 09:18:18.056 2024.03.30 08:32:19.699 2024.03.30 08:32:29.058
31 4.0.5.3049 2024.01.08 b67ce P P 10812 8875 2024.03.30 11:06:10.121 2024.03.30 11:06:20.933 2024.03.30 10:10:55.241 2024.03.30 10:11:04.116
32 4.0.5.3049 2024.01.08 97577 P P 8797 8859 2024.03.30 16:11:00.831 2024.03.30 16:11:09.628 2024.03.30 15:16:07.527 2024.03.30 15:16:16.386
33 4.0.5.3049 2024.01.05 2d8b0 P P 8781 9781 2024.03.30 19:28:49.764 2024.03.30 19:28:58.545 2024.03.30 18:34:07.842 2024.03.30 18:34:17.623
34 4.0.5.3049 2024.01.04 431e5 P P 9219 8281 2024.03.30 21:07:02.305 2024.03.30 21:07:11.524 2024.03.30 20:21:22.753 2024.03.30 20:21:31.034
35 4.0.5.3049 2024.01.04 e33b4 P P 9172 9313 2024.03.30 23:18:55.290 2024.03.30 23:19:04.462 2024.03.30 22:33:09.547 2024.03.30 22:33:18.860
36 4.0.5.3049 2024.01.04 207ef P P 9172 9719 2024.03.31 01:02:26.395 2024.03.31 01:02:35.567 2024.03.31 00:16:37.372 2024.03.31 00:16:47.091
37 4.0.5.3034 2023.12.12 c05ff P P 9234 8359 2024.03.31 06:55:03.488 2024.03.31 06:55:12.722 2024.03.31 06:09:09.392 2024.03.31 06:09:17.751
38 4.0.5.3034 2023.12.12 3a40e P P 9234 8343 2024.03.31 15:29:46.924 2024.03.31 15:29:56.158 2024.03.31 14:43:54.635 2024.03.31 14:44:02.978
39 4.0.5.3034 2023.12.02 5934b P P 9187 9375 2024.03.31 10:02:47.195 2024.03.31 10:02:56.382 2024.03.31 09:16:55.040 2024.03.31 09:17:04.415
40 4.0.5.3034 2023.12.02 7ea5a P P 9187 8641 2024.03.31 17:54:06.339 2024.03.31 17:54:15.526 2024.03.31 17:08:14.863 2024.03.31 17:08:23.504
41 4.0.5.3034 2023.11.30 4fbc9 P P 9172 9344 2024.03.31 19:55:01.185 2024.03.31 19:55:10.357 2024.03.31 19:09:05.276 2024.03.31 19:09:14.620

Elapsed time, ms. Chart for last 41 runs:

Last commits information (all timestamps in UTC):