From 43fd5395f5b545a7cc1bf35ca733101c7450bef6 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Wed, 2 Oct 2024 19:47:45 -0500 Subject: [PATCH] filter out iceprod instance ids --- condor_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/condor_utils.py b/condor_utils.py index 7e1c147..df6debf 100644 --- a/condor_utils.py +++ b/condor_utils.py @@ -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: