Skip to content

Commit

Permalink
Merge pull request dmwm#5519 from vkuznet/reqmgr2
Browse files Browse the repository at this point in the history
Fix location of jsdir
  • Loading branch information
ticoann committed Dec 10, 2014
2 parents d291a88 + 0cca2a9 commit ce65921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/WMCore/ReqMgr/Web/ReqMgrService.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def __init__(self, app, config, mount):
self.jsdir = web_config.get('jsdir', jsdir)
# read scripts area and initialize data-ops scripts
self.sdir = os.environ.get('RM_SCRIPTS', os.getcwd()+'/scripts')
self.sdir = web_config.get('sdir', jsdir)
self.sdir = web_config.get('sdir', self.sdir)
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)
Expand Down

0 comments on commit ce65921

Please sign in to comment.