From d7d0f1f47e4b4dacd6432caf3e69a144af487572 Mon Sep 17 00:00:00 2001 From: Alan Malta Rodrigues Date: Wed, 21 Feb 2024 05:25:07 -0500 Subject: [PATCH] Fix variable name in log record; complement to #11879 --- .../WMCore/WorkQueue/Policy/Start/StartPolicyInterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/WMCore/WorkQueue/Policy/Start/StartPolicyInterface.py b/src/python/WMCore/WorkQueue/Policy/Start/StartPolicyInterface.py index 5e8a5e8750..e7b844e0a1 100644 --- a/src/python/WMCore/WorkQueue/Policy/Start/StartPolicyInterface.py +++ b/src/python/WMCore/WorkQueue/Policy/Start/StartPolicyInterface.py @@ -284,7 +284,7 @@ def getDatasetLocationsFromMSPileup(self, datasetsWithDbsURL): for dbsUrl, datasets in datasetsWithDbsURL.items(): pileUpinstance = '-testbed' if 'cmsweb-testbed' in dbsUrl else '-prod' msPileupUrl = f'https://cmsweb{pileUpinstance}.cern.ch/ms-pileup/data/pileup' - self.logger.info(f'Will fetch {len(datasets)} from MSPileup url: {dbsUrl}') + self.logger.info(f'Will fetch {len(datasets)} from MSPileup url: {msPileupUrl}') for dataset in datasets: queryDict = {'query': {'pileupName': dataset}, 'filters': ['expectedRSEs', 'currentRSEs', 'pileupName', 'containerFraction', 'ruleIds']}