From 608cad6404fa10cf63ed1d3d7dff853381db1a52 Mon Sep 17 00:00:00 2001 From: Katherine Xiao Date: Mon, 6 Jul 2020 12:53:50 -0700 Subject: [PATCH] fix in base.py --- jupyterhub/handlers/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/handlers/base.py b/jupyterhub/handlers/base.py index 91bf4a4e..12c48be2 100644 --- a/jupyterhub/handlers/base.py +++ b/jupyterhub/handlers/base.py @@ -912,7 +912,7 @@ class BaseHandler(RequestHandler): self.log.error( "Stopping %s to avoid inconsistent state", user_server_name ) - await user.stop() + await user.stop(server_name) PROXY_ADD_DURATION_SECONDS.labels(status='failure').observe( time.perf_counter() - proxy_add_start_time )