File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
jupyter_server_proxy/standalone Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- from __future__ import annotations # For Python 3.8 compatibility
1+ from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
22
33import argparse
44import logging
Original file line number Diff line number Diff line change 1010async def notify_activity ():
1111 """
1212 Regularly notify JupyterHub of activity.
13- See `jupyrehub/ singleuser/extensions#L396`
13+ See https://github.com/jupyterhub/jupyterhub/blob/4.x/jupyterhub/ singleuser/extension.py#L389
1414 """
1515
1616 client = httpclient .AsyncHTTPClient ()
Original file line number Diff line number Diff line change 1- from __future__ import annotations # For Python 3.8 compatibility
1+ from __future__ import annotations # Allows type subscripts (like tuple[str, int]) in Python 3.8
22
33import os
44import re
@@ -81,7 +81,7 @@ def get_timeout(self):
8181
8282
8383def configure_ssl ():
84- # See jupyter_server/serverapp:init_webapp
84+ # See https://github.com/jupyter-server/ jupyter_server/blob/v2.0.0/jupyter_server/ serverapp.py#L2053-L2073
8585 keyfile = os .environ .get ("JUPYTERHUB_SSL_KEYFILE" , "" )
8686 certfile = os .environ .get ("JUPYTERHUB_SSL_CERTFILE" , "" )
8787 client_ca = os .environ .get ("JUPYTERHUB_SSL_CLIENT_CA" , "" )
You can’t perform that action at this time.
0 commit comments