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

Commit 25d4ee2

Browse files
committed
Fix the line which is used for rucio testing filtering
1 parent a3bd184 commit 25d4ee2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Unified/injector.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ def injector(url, options, specific):
4242
for wf in workflows:
4343
if specific and not specific in wf: continue
4444

45-
if not options.manual and 'rucio' in wf.lower(): continue
45+
#If we need it, we should use wf.name.lower() in the following line
46+
#if not options.manual and 'rucio' in wf.lower(): continue
4647

4748
exists = session.query(Workflow).filter(Workflow.name == wf ).first()
4849
if not exists:

0 commit comments

Comments
 (0)