# | Line 58 | Line 58 | class SchedulerRemoteglidein(SchedulerGr | |
---|---|---|
58 | self.group = cfg_params.get("GRID.group", None) | |
59 | self.role = cfg_params.get("GRID.role", None) | |
60 | self.VO = cfg_params.get('GRID.virtual_organization','cms') | |
61 | + | self.allowOverflow = cfg_params.get('GRID.allow_overflow', 1) |
62 | ||
63 | self.checkProxy() | |
64 | ||
# | Line 158 | Line 159 | class SchedulerRemoteglidein(SchedulerGr | |
159 | else: | |
160 | jobParams += '+MaxWallTimeMins = %d; ' % (60*24) | |
161 | ||
162 | + | if self.allowOverflow == "0": |
163 | + | jobParams += '+CMS_ALLOW_OVERFLOW = False; ' |
164 | + | |
165 | common._db.updateTask_({'jobType':jobParams}) | |
166 | ||
167 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |