Skip to content

Commit

Permalink
fix(wms): pass args to SD.buildQueueDict() in the right order
Browse files Browse the repository at this point in the history
  • Loading branch information
aldbr committed Mar 5, 2025
1 parent beafcc5 commit 7322025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def beginExecution(self):
self.log.always("MaxPilotsToSubmit:", self.maxPilotsToSubmit)

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

# Stop the execution if there is no usable queue
Expand Down

0 comments on commit 7322025

Please sign in to comment.