Skip to content

Commit

Permalink
sweep: #7712 fix: AREX submission issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aldbr authored and web-flow committed Jun 28, 2024
1 parent 613d7ee commit c40e8ac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/DIRAC/Resources/Computing/AREXComputingElement.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,9 @@ def _getArcJobID(self, executableFile, inputs, outputs, delegation):
response = result["Value"]

responseJob = response.json()["job"]
if isinstance(responseJob, list):
responseJob = responseJob[0]

if responseJob["status-code"] > "400":
self.log.warn(
"Failed to submit job",
Expand Down

0 comments on commit c40e8ac

Please sign in to comment.