Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions qiskit_ibm_runtime/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from .runtime_job import RuntimeJob
from .utils.result_decoder import ResultDecoder
from .ibm_backend import IBMBackend
from .exceptions import RuntimeJobTimeoutError
from .utils.default_session import set_cm_session
from .utils.deprecation import deprecate_arguments

Expand Down Expand Up @@ -181,10 +180,7 @@ def run(
self._setup_lock.release()

if self._backend is None:
try:
self._backend = job.backend(0).name
except RuntimeJobTimeoutError:
self._backend = None
self._backend = job.backend().name

return job

Expand Down
8 changes: 0 additions & 8 deletions releasenotes/notes/backend-blocking-job-70ebcf44855cbdfd.yaml

This file was deleted.