From f93c30ed1c06562da6ae218015bbed7a1f62ef13 Mon Sep 17 00:00:00 2001 From: Will Date: Mon, 7 Aug 2023 11:55:32 +0100 Subject: [PATCH] Trying setting websocket url --- base-notebook/jupyter_server_config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/base-notebook/jupyter_server_config.py b/base-notebook/jupyter_server_config.py index b14f175422..4a0953fcec 100644 --- a/base-notebook/jupyter_server_config.py +++ b/base-notebook/jupyter_server_config.py @@ -11,8 +11,9 @@ c.ServerApp.ip = "0.0.0.0" c.ServerApp.open_browser = False -c.ServerApp.default_url = '/node/slurmd-0/8888/' -c.ServerApp.base_url = '/node/slurmd-0/8888/' +#c.ServerApp.default_url = '/node/slurmd-0/8888/' +#c.ServerApp.base_url = '/node/slurmd-0/8888/' +c.ServerApp.websocket_url = '/node/slurmd-0/8888' # to output both image/svg+xml and application/pdf plot formats in the notebook file c.InlineBackend.figure_formats = {"png", "jpeg", "svg", "pdf"}