Skip to content

Commit

Permalink
Don't validate certs for when stopping server (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer authored Sep 4, 2022
1 parent 24347f2 commit c07ca73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ async def resolve(self, host, port, *args, **kwargs):

# Yield the request for the given client.
url = urlunsplit(parts)
request = HTTPRequest(url, method=method, body=body, headers=headers)
request = HTTPRequest(url, method=method, body=body, headers=headers, validate_cert=False)
yield request


Expand Down

0 comments on commit c07ca73

Please sign in to comment.