mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-17 15:03:02 +00:00
options_form is a regular configurable
now that we can assume User.spawner exists at all times
This commit is contained in:
@@ -68,7 +68,7 @@ class LoginHandler(BaseHandler):
|
||||
if user.spawner:
|
||||
status = yield user.spawner.poll()
|
||||
already_running = (status == None)
|
||||
if not already_running and not self.spawner_class.options_form:
|
||||
if not already_running and not user.spawner.options_form:
|
||||
yield self.spawn_single_user(user)
|
||||
self.set_login_cookie(user)
|
||||
next_url = self.get_argument('next', default='')
|
||||
|
Reference in New Issue
Block a user