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