Skip to content

Commit 7322025

Browse files
committed
fix(wms): pass args to SD.buildQueueDict() in the right order
1 parent beafcc5 commit 7322025

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)