Do not set some options for Try_Jobdir sched
This commit is contained in:
parent
192c5a8bb2
commit
f466dc3483
1 changed files with 2 additions and 2 deletions
|
@ -1000,10 +1000,10 @@ def load_config (c):
|
||||||
c['schedulers'] = []
|
c['schedulers'] = []
|
||||||
for s in config['schedulers']:
|
for s in config['schedulers']:
|
||||||
# Ugh :-/. There should be no special case here...
|
# Ugh :-/. There should be no special case here...
|
||||||
if s['type'] != 'Nightly':
|
if s['type'] != 'Nightly' and s['type'] != 'Try_Jobdir':
|
||||||
s['treeStableTimer'] = None
|
s['treeStableTimer'] = None
|
||||||
s['fileIsImportant'] = DefaultGDBfileIsImportant
|
s['fileIsImportant'] = DefaultGDBfileIsImportant
|
||||||
else:
|
elif s['type'] == 'Nightly':
|
||||||
try:
|
try:
|
||||||
s['dayOfWeek'] = int (s['dayOfWeek'])
|
s['dayOfWeek'] = int (s['dayOfWeek'])
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in a new issue