Skip to content

Commit

Permalink
Print unknown statuses rather than error
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb-johnson committed Nov 6, 2023
1 parent c14b351 commit 847c314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/quantum_serverless/core/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,4 +739,4 @@ def _map_status_to_serverless(status: str) -> str:
try:
return status_map[status]
except KeyError as exc:
raise KeyError(f"Cannot interpret unknown job status: {status}") from exc
print(f"{status}")

0 comments on commit 847c314

Please sign in to comment.