We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4acb047 commit 0b425ceCopy full SHA for 0b425ce
1 file changed
DMOps/file_invalidation_server/fi_manager/process_jobs.py
@@ -90,6 +90,9 @@ def parse_job_logs(logs: str):
90
91
dbs_invalidated_files = re.findall(pattern='(?:Would invalidate file on DBS:) (\/[\w\/\-]+.root)\s',
92
string=logs)
93
+
94
+ dbs_invalidated_dataset = re.findall(pattern='(?:Would invalidate dataset on DBS:) (\/[\w\/\-]+.root)\s',
95
+ string=logs)
96
else:
97
rucio_invalidated_files = re.findall(pattern='(?:Declared file) (\/[\w\/\-]+.root) as bad at',
98
0 commit comments