Skip to content

Commit

Permalink
Merge pull request #11906 from todor-ivanov/bugfix_GWQFailsToFetchDat…
Browse files Browse the repository at this point in the history
…aMSPilup_fix-11903

Correctly pass dbsUrl to the locationsFromMSPileup method
  • Loading branch information
amaltaro authored Feb 20, 2024
2 parents 024a5c4 + 2748054 commit ed0bd54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/WMCore/WorkQueue/DataLocationMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __call__(self, dataItems, rucioAcct=None):
for dbs, dataItems in viewitems(dataByDbs):
# if global use Rucio, else use dbs
if "pileup" in rucioAcct:
output = self.locationsFromMSPileup(dataItems, dbs)
output = self.locationsFromMSPileup(dataItems, dbs.dbsURL)
elif isGlobalDBS(dbs):
output = self.locationsFromRucio(dataItems, rucioAcct)
else:
Expand Down

0 comments on commit ed0bd54

Please sign in to comment.