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
2
2
3
3
import argparse
4
4
import logging
Original file line number Diff line number Diff line change 10
10
async def notify_activity ():
11
11
"""
12
12
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
14
14
"""
15
15
16
16
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
2
2
3
3
import os
4
4
import re
@@ -81,7 +81,7 @@ def get_timeout(self):
81
81
82
82
83
83
def 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
85
85
keyfile = os .environ .get ("JUPYTERHUB_SSL_KEYFILE" , "" )
86
86
certfile = os .environ .get ("JUPYTERHUB_SSL_CERTFILE" , "" )
87
87
client_ca = os .environ .get ("JUPYTERHUB_SSL_CLIENT_CA" , "" )
You can’t perform that action at this time.
0 commit comments