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.
1 parent 0b13bd2 commit c3d9078Copy full SHA for c3d9078
src/DIRAC/Resources/Computing/AREXComputingElement.py
@@ -667,7 +667,7 @@ def getCEStatus(self):
667
for qi in queueInfo:
668
if qi["ID"].endswith(magic):
669
result["RunningJobs"] = int(qi["RunningJobs"])
670
- result["WaitingJobs"] = int(qi["WaitingJobs"])
+ result["WaitingJobs"] = int(qi["WaitingJobs"]) + int(qi["StagingJobs"]) + int(qi["PreLRMSWaitingJobs"])
671
break # Pick the first (should be only ...) matching queue + VO
672
else:
673
return S_ERROR(f"Could not find the queue {self.queue} associated to VO {vo}")
0 commit comments