Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Delay SSL context construction in requests adapter #385

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions hyper/contrib.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,6 @@ def get_connection(self, host, port, scheme, cert=None, verify=True,
if port is None: # pragma: no cover
port = 80 if not secure else 443

ssl_context = None
if not verify:
verify = False
ssl_context = init_context(cert=cert)
ssl_context.check_hostname = False
ssl_context.verify_mode = ssl.CERT_NONE
elif verify is True and cert is not None:
ssl_context = init_context(cert=cert)
elif verify is not True:
ssl_context = init_context(cert_path=verify, cert=cert)

if proxy:
proxy_headers = self.proxy_headers(proxy)
proxy_netloc = urlparse(proxy).netloc
Expand All @@ -72,6 +61,18 @@ def get_connection(self, host, port, scheme, cert=None, verify=True,
try:
conn = self.connections[connection_key]
except KeyError:

ssl_context = None
if not verify:
verify = False
ssl_context = init_context(cert=cert)
ssl_context.check_hostname = False
ssl_context.verify_mode = ssl.CERT_NONE
elif verify is True and cert is not None:
ssl_context = init_context(cert=cert)
elif verify is not True:
ssl_context = init_context(cert_path=verify, cert=cert)

conn = HTTPConnection(
host,
port,
Expand Down