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

Commit cc3e479

Browse files
committed
Fix rucio testing line
1 parent b791d44 commit cc3e479

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
@@ -146,7 +146,8 @@ def injector(url, options, specific):
146146
for wf in session.query(Workflow).filter(Workflow.status == 'trouble').all():
147147
print wf.name
148148
if specific and not specific in wf.name: continue
149-
if not options.manual and 'rucio' in wf.lower(): continue
149+
#If we need it, we should use wf.name.lower() in the following line
150+
#if not options.manual and 'rucio' in wf.lower(): continue
150151
print wf.name
151152
wfi = workflowInfo(url, wf.name )
152153
wl = wfi.request #getWorkLoad(url, wf.name)

0 commit comments

Comments
 (0)