-
Notifications
You must be signed in to change notification settings - Fork 232
can't run JupyterDash.infer_jupyter_proxy_config() in Jupyterhub #62
Comments
We are seeing a similar issue. Jupyterhub never responds to this request: jupyter-dash/jupyter_dash/comms.py Line 16 in 351cb7c
|
Any progress on this issue? |
me waiting also ;) |
Same here. |
+1 |
I have a docker MWE to replicate this:
Build this dockerfile, then launch it, connect as testuser and try running this in a new notebook:
|
It appears that about a year ago, ipykernel changed several functions into coroutines. That includes this function being called in jupyter-dash. Thus, that function call needs to be changed to maybe something like this: loop = asyncio.get_running_loop()
loop.run_until_complete(kernel.do_one_iteration()) That would hopefully fix it. For now, I'm just downgrading |
I am not able to run
JupyterDash.infer_jupyter_proxy_config()
in Jupyterhub. There is no error message, cell remains in busy state without any output. Do you have any idea?app.run_server()
returns127.0.0.1:8005
which will not work from outsideapp.run_server("mode=jupyterlab")
also won't workblocked mixed content: the page was loaded over HTTPS, but requested an insecure frame 'http://ip:8050/'. This request has been blocked; the content must be served over HTTPS.
only thing working is opening the ip:8050 in another tab and I can see the dashboard.
The text was updated successfully, but these errors were encountered: