Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
Split unified config lists to relval and nonrelval / 2
Browse files Browse the repository at this point in the history
  • Loading branch information
tivanov committed May 15, 2020
1 parent 6e337dd commit cca87e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Unified/checkor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ def upward( ns ):

# Corrections to the lists of files present in Phedex for the data Tiers managed by Rucio
_,dsn,process_string,tier = output.split('/')
if tier in UC.get('tiers_to_rucio'):
if tier in set(UC.get('tiers_to_rucio_relval')) | set(UC.get('tiers_to_rucio_nonrelval')):
# Here recalculating the filenames as a union of the phedex_files | rucio_files
all_filenames = set(phedex_filenames) | set(rucioClient.getFileNamesDataset(out))
missing_phedex = list(set(dbs_filenames) - all_filenames)
Expand Down

0 comments on commit cca87e5

Please sign in to comment.