Skip to content

Commit

Permalink
Merge pull request #7713 from DIRACGridBot/cherry-pick-2-3012cd52b-in…
Browse files Browse the repository at this point in the history
…tegration

[sweep:integration] fix: AREX submission issue
  • Loading branch information
fstagni committed Jun 28, 2024
2 parents 613d7ee + c40e8ac commit ab05e2d
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 ab05e2d

Please sign in to comment.