##// END OF EJS Templates
don't pass profile_dir as kwarg in ipclusterapp...
MinRK -
Show More
@@ -316,7 +316,7 b' class IPClusterEngines(BaseParallelApplication):'
316 316 self.log.info("Starting %i engines"%self.n)
317 317 self.engine_launcher.start(
318 318 self.n,
319 profile_dir=self.profile_dir.location
319 self.profile_dir.location
320 320 )
321 321
322 322 def stop_engines(self):
@@ -422,7 +422,7 b' class IPClusterStart(IPClusterEngines):'
422 422
423 423 def start_controller(self):
424 424 self.controller_launcher.start(
425 profile_dir=self.profile_dir.location
425 self.profile_dir.location
426 426 )
427 427
428 428 def stop_controller(self):
@@ -989,7 +989,7 b' class SGEControllerLauncher(SGELauncher):'
989 989 def start(self, profile_dir):
990 990 """Start the controller by profile or profile_dir."""
991 991 self.log.info("Starting PBSControllerLauncher: %r" % self.args)
992 return super(PBSControllerLauncher, self).start(1, profile_dir)
992 return super(SGEControllerLauncher, self).start(1, profile_dir)
993 993
994 994 class SGEEngineSetLauncher(SGELauncher):
995 995 """Launch Engines with SGE"""
General Comments 0
You need to be logged in to leave comments. Login now