From f466dc3483fdb5d8e9e4b1dfc85ea03629e7f9d2 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Fri, 22 Jul 2016 19:01:46 -0400 Subject: [PATCH] Do not set some options for Try_Jobdir sched --- master.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/master.cfg b/master.cfg index 8b6ad1f..516d2c0 100644 --- a/master.cfg +++ b/master.cfg @@ -1000,10 +1000,10 @@ def load_config (c): c['schedulers'] = [] for s in config['schedulers']: # 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['fileIsImportant'] = DefaultGDBfileIsImportant - else: + elif s['type'] == 'Nightly': try: s['dayOfWeek'] = int (s['dayOfWeek']) except: