##// END OF EJS Templates
pass Session key around in config in ipcontroller...
Min RK -
Show More
@@ -357,6 +357,9 b' class IPControllerApp(BaseParallelApplication):'
357 self.factory.hub.engine_state_file = os.path.join(self.profile_dir.log_dir, fname)
357 self.factory.hub.engine_state_file = os.path.join(self.profile_dir.log_dir, fname)
358 if self.restore_engines:
358 if self.restore_engines:
359 self.factory.hub._load_engine_state()
359 self.factory.hub._load_engine_state()
360 # load key into config so other sessions in this process (TaskScheduler)
361 # have the same value
362 self.config.Session.key = self.factory.session.key
360
363
361 def init_schedulers(self):
364 def init_schedulers(self):
362 children = self.children
365 children = self.children
General Comments 0
You need to be logged in to leave comments. Login now