Skip to content

Commit a2e6ea3

Browse files
authored
Merge pull request #8073 from aldbr/main_FIX_sd-build-queue-dict
fix(wms): pass args to SD.buildQueueDict() in the right order
2 parents beafcc5 + 7322025 commit a2e6ea3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def beginExecution(self):
168168
self.log.always("MaxPilotsToSubmit:", self.maxPilotsToSubmit)
169169

170170
# Build the dictionary of queues that are going to be used: self.queueDict
171-
if not (result := self._buildQueueDict(siteNames, ceTypes, ces, tags))["OK"]:
171+
if not (result := self._buildQueueDict(siteNames, ces, ceTypes, tags))["OK"]:
172172
return result
173173

174174
# Stop the execution if there is no usable queue

0 commit comments

Comments
 (0)