Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eu Jing Chua committed Aug 26, 2024
1 parent f3fee23 commit 16b373f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ def _check_remote_exec_status(self, params: dict) -> Tuple[Status, dict]:
execution_state = (
output.get("properties", {}).get("instanceView", {}).get("executionState")
)
if execution_state in {"Running", "Pending"}:
if execution_state in {"Running", "Pending", "Unknown"}:
return Status.RUNNING, {}
elif execution_state == "Succeeded":
return Status.SUCCEEDED, output
Expand Down

0 comments on commit 16b373f

Please sign in to comment.