copy pasta in singleuser extension ssl

This commit is contained in:
Min RK
2025-10-06 08:17:42 -07:00
parent ed6c981cf7
commit 261e2ae13e

View File

@@ -328,9 +328,9 @@ class JupyterHubSingleUser(ExtensionApp):
AsyncHTTPClient.configure(
AsyncHTTPClient.configured_class(),
defaults=dict(
ca_certs=self.client_ca,
client_key=self.keyfile,
client_cert=self.certfile,
ca_certs=self.hub_auth.client_ca,
client_key=self.hub_auth.keyfile,
client_cert=self.hub_auth.certfile,
validate_cert=True,
),
)