Skip to content

Commit

Permalink
Handle Submitting status
Browse files Browse the repository at this point in the history
  • Loading branch information
ttedeschi authored May 31, 2024
1 parent e40b830 commit 1880ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ def StatusHandler():
process.close()
job_ = json.loads(preprocessed)
status = job_["jobs"][0]["state"]
if status == "Accepted" or status == "Preparing" or status == "Queuing":
if status == "Accepted" or status == "Preparing" or status == "Queuing" or status == "Submitting":
state = {"waiting": {
}
}
Expand Down

0 comments on commit 1880ea5

Please sign in to comment.