18 |
|
"owner","parent_job", "reason","resubmitted","rsl","seed",\ |
19 |
|
"stateEnterTime","stateEnterTimes","subjob_failed", \ |
20 |
|
"user tags" , "status" , "status_code","hierarchy"] |
21 |
+ |
|
22 |
|
return |
23 |
|
|
24 |
|
def configure(self, cfg_params): |
168 |
|
try: self.schedulerName = cfg_params['CRAB.scheduler'] |
169 |
|
except KeyError: self.scheduler = '' |
170 |
|
|
171 |
+ |
try: self.dontCheckProxy=cfg_params["EDG.dont_check_proxy"] |
172 |
+ |
except KeyError: self.dontCheckProxy = 0 |
173 |
+ |
|
174 |
|
return |
175 |
|
|
176 |
|
|
862 |
|
Function to check the Globus proxy. |
863 |
|
""" |
864 |
|
if (self.proxyValid): return |
865 |
+ |
|
866 |
+ |
### Just return if asked to do so |
867 |
+ |
if (self.dontCheckProxy): |
868 |
+ |
self.proxyValid=1 |
869 |
+ |
return |
870 |
+ |
|
871 |
|
timeleft = -999 |
872 |
|
minTimeLeft=10*3600 # in seconds |
873 |
|
|