From c052bce0b0b053272a31e4ea603bab9108878107 Mon Sep 17 00:00:00 2001 From: Woojin Jang Date: Tue, 1 Aug 2023 03:11:17 +0200 Subject: [PATCH] Checking wmcore_pileup rule as well when getting allowed sites for a workflow --- utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.py b/utils.py index 28184ac3..688d2b78 100755 --- a/utils.py +++ b/utils.py @@ -4571,6 +4571,7 @@ def getSiteWhiteList(self, pickone=False, verbose=True): for sec in secondary: pileup_locations = rucioClient.getDatasetLocationsByAccount(sec, "wmcore_transferor") pileup_locations += rucioClient.getDatasetLocationsByAccount(sec, "transfer_ops") + pileup_locations += rucioClient.getDatasetLocationsByAccount(sec, "wmcore_pileup") sites_allowed += pileup_locations sites_allowed = sorted(set(sites_allowed)) print("Reading minbias")