Skip to content

Commit c07ca73

Browse files
authored
Don't validate certs for when stopping server (#959)
1 parent 24347f2 commit c07ca73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ async def resolve(self, host, port, *args, **kwargs):
337337

338338
# Yield the request for the given client.
339339
url = urlunsplit(parts)
340-
request = HTTPRequest(url, method=method, body=body, headers=headers)
340+
request = HTTPRequest(url, method=method, body=body, headers=headers, validate_cert=False)
341341
yield request
342342

343343

0 commit comments

Comments
 (0)