Skip to content
Merged
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: 3 additions & 3 deletions qiskit_experiments/database_service/db_experiment_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -928,12 +928,12 @@ def _wait_for_jobs(self, timeout: Optional[float] = None):
_, timeout = combined_timeout(fut.result, timeout)
except futures.TimeoutError:
LOG.warning(
"Possibly incomplete experiment data: Retrieving a job" " results timed out."
"Possibly incomplete experiment data: Retrieving a job's result timed out."
)
except Exception: # pylint: disable = broad-except
LOG.warning(
"Possibly incomplete experiment data: Retrieving a job results"
" rased an exception."
"Possibly incomplete experiment data: Retrieving a job's result"
" raised an exception."
)
# Check job status and show warning if cancelled or error
jobs_status = self._job_status()
Expand Down