diff --git a/jobs/create-relval-jobs.py b/jobs/create-relval-jobs.py index 58153a9e7477..bfdf7b70e4a7 100755 --- a/jobs/create-relval-jobs.py +++ b/jobs/create-relval-jobs.py @@ -85,7 +85,7 @@ def createJob(workflow, cmssw_ver, arch): if os.path.exists(cmds): e, o = getstatusoutput ("cat %s | grep ^step" % cmds) for c in o.split("\n"): - job = {"cpu" : 300, "rss" : 6*1024*1024*1024, "time" : 3600, "command" : re.sub("\s*;\s*$","",c.split(":",1)[-1])} + job = {"cpu" : 300, "rss" : 4.5*1024*1024*1024, "time" : 120, "command" : re.sub("\s*;\s*$","",c.split(":",1)[-1])} step = c.split(":")[0] if (wf in wf_stats) and (step in wf_stats[wf]): job["time"] = wf_stats[wf][step]["time"]