From c1dbf7af4e01d89e2d2e0a6985d7d2f6e8612dc6 Mon Sep 17 00:00:00 2001 From: Caleb Johnson Date: Mon, 6 Nov 2023 10:06:55 -0600 Subject: [PATCH] Print unknown statuses rather than error --- client/quantum_serverless/core/job.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/quantum_serverless/core/job.py b/client/quantum_serverless/core/job.py index 68b311e74..006454fbc 100644 --- a/client/quantum_serverless/core/job.py +++ b/client/quantum_serverless/core/job.py @@ -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}")