Skip to content

Commit 9df02c0

Browse files
authored
Flux: Handle stgatus CA as error (#456)
1 parent da5bb94 commit 9df02c0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pysqa/wrapper/flux.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ def convert_queue_status(queue_status_output: str) -> pandas.DataFrame:
7171
df.loc[df.status == "R", "status"] = "running"
7272
df.loc[df.status == "S", "status"] = "pending"
7373
df.loc[df.status == "C", "status"] = "error"
74+
df.loc[df.status == "CA", "status"] = "error"
7475
df.loc[df.status == "CD", "status"] = "finished"
7576
return df
7677

0 commit comments

Comments
 (0)