From 92b4f28e4b51ef2d751f1331f114f8db3c5aaf39 Mon Sep 17 00:00:00 2001 From: Valentin Kuznetsov Date: Tue, 2 Sep 2014 10:32:46 -0400 Subject: [PATCH] Chnage default threshold for reload --- src/python/WMCore/ReqMgr/Web/ReqMgrService.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/WMCore/ReqMgr/Web/ReqMgrService.py b/src/python/WMCore/ReqMgr/Web/ReqMgrService.py index 4317fee80f..b52047e8bb 100644 --- a/src/python/WMCore/ReqMgr/Web/ReqMgrService.py +++ b/src/python/WMCore/ReqMgr/Web/ReqMgrService.py @@ -219,7 +219,7 @@ def __init__(self, app, config, mount): self.yuidir = web_config.get('yuidir', yuidir) # read scripts area and initialize data-ops scripts self.sdir = os.environ.get('RM_SCRIPTS', os.getcwd()+'/scripts') - self.sdict_thr = web_config.get('sdict_thr', 60) # put reasonable 10 min interval + self.sdict_thr = web_config.get('sdict_thr', 600) # put reasonable 10 min interval self.sdict = {'ts':time.time()} # placeholder for data-ops scripts self.update_scripts(force=True)