This commit is contained in:
Micke Nordin 2024-01-16 16:50:46 +01:00
parent 25d4b5f233
commit 4ce23f0acc
Signed by untrusted user: Micke
GPG key ID: F53C4CC83EDAB3BE

View file

@ -163,12 +163,13 @@ hub:
""" """
import json import json
import os import os
import tornado.options
from urllib.parse import urlparse from urllib.parse import urlparse
from tornado.httpclient import AsyncHTTPClient, HTTPRequest
from tornado.httpserver import HTTPServer from tornado.httpserver import HTTPServer
from tornado.ioloop import IOLoop from tornado.ioloop import IOLoop
from tornado.web import Application, RequestHandler, authenticated from tornado.log import app_log
from tornado.web import Application, HTTPError, RequestHandler, authenticated
from jupyterhub.services.auth import HubAuthenticated from jupyterhub.services.auth import HubAuthenticated