Skip to content

Commit

Permalink
Merge pull request #8073 from aldbr/main_FIX_sd-build-queue-dict
Browse files Browse the repository at this point in the history
fix(wms): pass args to SD.buildQueueDict() in the right order
  • Loading branch information
fstagni authored Mar 5, 2025
2 parents beafcc5 + 7322025 commit a2e6ea3
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 a2e6ea3

Please sign in to comment.