From de11909a04e8335d5b484b94e4c1569c4cd1c4f1 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 4 Jul 2019 11:56:34 +0200 Subject: [PATCH] Update config used for testing --- testing/jupyterhub_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/jupyterhub_config.py b/testing/jupyterhub_config.py index 56aea917..bd70ed97 100644 --- a/testing/jupyterhub_config.py +++ b/testing/jupyterhub_config.py @@ -13,6 +13,6 @@ c.JupyterHub.authenticator_class = DummyAuthenticator # Optionally set a global password that all users must use # c.DummyAuthenticator.password = "your_password" -from jupyterhub.spawners import SimpleSpawner +from jupyterhub.spawner import SimpleLocalProcessSpawner -c.JupyterHub.spawner_class = SimpleSpawner +c.JupyterHub.spawner_class = SimpleLocalProcessSpawner