Skip to content

Commit

Permalink
sweep: DIRACGrid#7818 fix(resources): AREXCE should return an error i…
Browse files Browse the repository at this point in the history
…f queue is not found
  • Loading branch information
aldbr authored and web-flow committed Oct 8, 2024
1 parent 4634fbc commit 228d7e4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/DIRAC/Resources/Computing/AREXComputingElement.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,8 @@ def getCEStatus(self):
result["RunningJobs"] = int(qi["RunningJobs"])
result["WaitingJobs"] = int(qi["WaitingJobs"])
break # Pick the first (should be only ...) matching queue + VO
else:
return S_ERROR(f"Could not find the queue {self.queue} associated to VO {vo}")

return result

Expand Down

0 comments on commit 228d7e4

Please sign in to comment.