restore db access on Spawner

Shouldn’t be strictly necessary, but doesn’t hurt
This commit is contained in:
Min RK
2017-08-31 10:03:33 +02:00
parent fe2157130b
commit 5f84a006dc
2 changed files with 3 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ from tempfile import mkdtemp
from sqlalchemy import inspect from sqlalchemy import inspect
from tornado import gen from tornado import gen
from tornado.ioloop import PeriodicCallback, IOLoop from tornado.ioloop import PeriodicCallback
from traitlets.config import LoggingConfigurable from traitlets.config import LoggingConfigurable
from traitlets import ( from traitlets import (
@@ -102,6 +102,7 @@ class Spawner(LoggingConfigurable):
authenticator = Any() authenticator = Any()
hub = Any() hub = Any()
orm_spawner = Any() orm_spawner = Any()
db = Any()
@observe('orm_spawner') @observe('orm_spawner')
def _orm_spawner_changed(self, change): def _orm_spawner_changed(self, change):

View File

@@ -201,6 +201,7 @@ class User(HasTraits):
authenticator=self.authenticator, authenticator=self.authenticator,
config=self.settings.get('config'), config=self.settings.get('config'),
proxy_spec=url_path_join(self.proxy_spec, name, '/'), proxy_spec=url_path_join(self.proxy_spec, name, '/'),
db=self.db,
) )
# update with kwargs. Mainly for testing. # update with kwargs. Mainly for testing.
spawn_kwargs.update(kwargs) spawn_kwargs.update(kwargs)