##// END OF EJS Templates
use App.instance() in launch_new_instance (parallel apps)...
MinRK -
Show More
@@ -511,7 +511,7 b' class IPBaseParallelApplication(Application):'
511
511
512 def launch_new_instance():
512 def launch_new_instance():
513 """Create and run the IPython cluster."""
513 """Create and run the IPython cluster."""
514 app = IPBaseParallelApplication()
514 app = IPBaseParallelApplication.instance()
515 app.initialize()
515 app.initialize()
516 app.start()
516 app.start()
517
517
@@ -389,7 +389,7 b' class IPControllerApp(BaseParallelApplication):'
389
389
390 def launch_new_instance():
390 def launch_new_instance():
391 """Create and run the IPython controller"""
391 """Create and run the IPython controller"""
392 app = IPControllerApp()
392 app = IPControllerApp.instance()
393 app.initialize()
393 app.initialize()
394 app.start()
394 app.start()
395
395
@@ -260,7 +260,7 b' class IPEngineApp(BaseParallelApplication):'
260
260
261 def launch_new_instance():
261 def launch_new_instance():
262 """Create and run the IPython engine"""
262 """Create and run the IPython engine"""
263 app = IPEngineApp()
263 app = IPEngineApp.instance()
264 app.initialize()
264 app.initialize()
265 app.start()
265 app.start()
266
266
@@ -86,7 +86,7 b' class IPLoggerApp(BaseParallelApplication):'
86
86
87 def launch_new_instance():
87 def launch_new_instance():
88 """Create and run the IPython LogWatcher"""
88 """Create and run the IPython LogWatcher"""
89 app = IPLoggerApp()
89 app = IPLoggerApp.instance()
90 app.initialize()
90 app.initialize()
91 app.start()
91 app.start()
92
92
General Comments 0
You need to be logged in to leave comments. Login now