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.
2 parents 12c6a51 + bd043a3 commit 3bb6ac8Copy full SHA for 3bb6ac8
src/DIRAC/Resources/Computing/AREXComputingElement.py
@@ -819,7 +819,7 @@ def getCEStatus(self):
819
for qi in queueInfo:
820
if qi["ID"].endswith(magic):
821
result["RunningJobs"] = int(qi["RunningJobs"])
822
- result["WaitingJobs"] = int(qi["WaitingJobs"])
+ result["WaitingJobs"] = int(qi["WaitingJobs"]) + int(qi["StagingJobs"]) + int(qi["PreLRMSWaitingJobs"])
823
break # Pick the first (should be only ...) matching queue + VO
824
else:
825
return S_ERROR(f"Could not find the queue {self.queue} associated to VO {vo}")
0 commit comments