Skip to content

Commit

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

[sweep:integration] fix(resources): AREXCE should return an error if queue is not found
  • Loading branch information
chrisburr authored Oct 9, 2024
2 parents 4634fbc + 96cdbd2 commit 5a66973
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion release.notes
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Fix a typo in the key Addler -> Adler of the return dict of putAndRegister

FIX: (#7806) RequestTaskAgent only considers requests in final states, and consider files in intermediate state as problematic (https://github.com/DIRACGrid/DIRAC/issues/7116)
NEW: (#7806) RequestTaskAgent uses getBulkRequestStatus instead of getRequestStatus
RMS: (#7806)
RMS: (#7806)
NEW: (#7806) implement getRequestStatus
NEW: (#7697) InputDataAgent: new Option MultiVO, which makes the FileCatalog Query use the author of the DN, rather than the Host, to resolve MultiVO metadata correctly. Fixes #7681

Expand Down
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 5a66973

Please sign in to comment.