From e0effa567a37ce2636d1a539b27f65b461470a8e Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Thu, 13 Jul 2017 20:14:11 -0700 Subject: [PATCH] Tag hub_ip_connect as configurable This value is expected to be provided by the user. --- jupyterhub/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/app.py b/jupyterhub/app.py index bf39d223..d73436c6 100644 --- a/jupyterhub/app.py +++ b/jupyterhub/app.py @@ -412,7 +412,7 @@ class JupyterHub(Application): .. versionadded:: 0.8 """ - ) + ).tag(config=True) hub_prefix = URLPrefix('/hub/', help="The prefix for the hub server. Always /base_url/hub/" )