Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add httpx.SSLContext configuration. #3022

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions httpx/_client.py
Expand Up @@ -1455,6 +1455,9 @@ def _init_proxy_transport(
) -> AsyncBaseTransport:
return AsyncHTTPTransport(
ssl_context=ssl_context,
verify=verify,
cert=cert,
http1=http1,
tomchristie marked this conversation as resolved.
Show resolved Hide resolved
http2=http2,
limits=limits,
proxy=proxy,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.