Skip to content

Commit

Permalink
filter out iceprod instance ids
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Oct 3, 2024
1 parent b588bac commit 43fd539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion condor_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ def filter_keys(data):
del data[k]

for k in list(data.keys()):
if not (k in good_keys or ('IceProd' in k)):
if not (k in good_keys or ('IceProd' in k and not k.endswith('InstanceId'))):
del data[k]
for k in good_keys:
if k not in data:
Expand Down

0 comments on commit 43fd539

Please sign in to comment.