# | Line 37 | Line 37 | class SchedulerCondor(SchedulerLocal) : | |
---|---|---|
37 | ||
38 | return sched_param | |
39 | ||
40 | + | def realSchedParams(self,cfg_params): |
41 | + | """ |
42 | + | Return dictionary with specific parameters, to use |
43 | + | with real scheduler |
44 | + | """ |
45 | + | |
46 | + | tmpDir = os.path.join(common.work_space.shareDir(),'.condor_temp') |
47 | + | params = {'tmpDir':tmpDir} |
48 | + | return params |
49 | + | |
50 | def loggingInfo(self, id): | |
51 | """ return logging info about job nj """ | |
52 | cmd = 'something' |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |