We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b037c8 commit bb5842dCopy full SHA for bb5842d
src/DIRAC/Resources/Computing/ARCComputingElement.py
@@ -63,6 +63,7 @@
63
MANDATORY_PARAMETERS = ["Queue"] # Mandatory for ARC CEs in GLUE2?
64
# See https://www.nordugrid.org/arc/arc6/tech/rest/rest.html#rest-interface-job-states
65
# We let "Deleted, Hold, Undefined" for the moment as we are not sure whether they are still used
66
+# "None" is a special case: it is returned when the job ID is not found in the system
67
STATES_MAP = {
68
"Accepting": PilotStatus.WAITING,
69
"Accepted": PilotStatus.WAITING,
@@ -83,6 +84,7 @@
83
84
"Wiped": PilotStatus.ABORTED,
85
"Deleted": PilotStatus.ABORTED,
86
"Hold": PilotStatus.FAILED,
87
+ "None": PilotStatus.ABORTED,
88
"Undefined": PilotStatus.UNKNOWN,
89
}
90
0 commit comments