##// 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 self.log.info("Starting %i engines"%self.n)
316 self.log.info("Starting %i engines"%self.n)
317 self.engine_launcher.start(
317 self.engine_launcher.start(
318 self.n,
318 self.n,
319 profile_dir=self.profile_dir.location
319 self.profile_dir.location
320 )
320 )
321
321
322 def stop_engines(self):
322 def stop_engines(self):
@@ -422,7 +422,7 b' class IPClusterStart(IPClusterEngines):'
422
422
423 def start_controller(self):
423 def start_controller(self):
424 self.controller_launcher.start(
424 self.controller_launcher.start(
425 profile_dir=self.profile_dir.location
425 self.profile_dir.location
426 )
426 )
427
427
428 def stop_controller(self):
428 def stop_controller(self):
@@ -989,7 +989,7 b' class SGEControllerLauncher(SGELauncher):'
989 def start(self, profile_dir):
989 def start(self, profile_dir):
990 """Start the controller by profile or profile_dir."""
990 """Start the controller by profile or profile_dir."""
991 self.log.info("Starting PBSControllerLauncher: %r" % self.args)
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 class SGEEngineSetLauncher(SGELauncher):
994 class SGEEngineSetLauncher(SGELauncher):
995 """Launch Engines with SGE"""
995 """Launch Engines with SGE"""
General Comments 0
You need to be logged in to leave comments. Login now