ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/SchedulerEdg.py
(Generate patch)

Comparing COMP/CRAB/python/SchedulerEdg.py (file contents):
Revision 1.102 by slacapra, Tue Oct 17 13:28:03 2006 UTC vs.
Revision 1.103 by slacapra, Wed Oct 25 15:40:37 2006 UTC

# Line 18 | Line 18 | class SchedulerEdg(Scheduler):
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):
# Line 167 | Line 168 | class SchedulerEdg(Scheduler):
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  
# Line 858 | Line 862 | class SchedulerEdg(Scheduler):
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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines