From 58ecbd81312bba12d10f6b8678e52ac578d19ee5 Mon Sep 17 00:00:00 2001 From: Juanse Date: Sun, 5 Dec 2021 15:03:51 +0100 Subject: [PATCH 1/4] Update http_proxy.py --- httpcore/_async/http_proxy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/httpcore/_async/http_proxy.py b/httpcore/_async/http_proxy.py index d24e88c2a..f99eaac6a 100644 --- a/httpcore/_async/http_proxy.py +++ b/httpcore/_async/http_proxy.py @@ -186,6 +186,7 @@ def __init__( origin=proxy_origin, keepalive_expiry=keepalive_expiry, network_backend=network_backend, + ssl_context=ssl_context ) self._proxy_origin = proxy_origin self._remote_origin = remote_origin From 239aca351783984f987775d5ed10c407962d05fd Mon Sep 17 00:00:00 2001 From: Juanse Date: Sun, 5 Dec 2021 15:04:04 +0100 Subject: [PATCH 2/4] Update http_proxy.py --- httpcore/_sync/http_proxy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/httpcore/_sync/http_proxy.py b/httpcore/_sync/http_proxy.py index ac07273a4..8424b4ebf 100644 --- a/httpcore/_sync/http_proxy.py +++ b/httpcore/_sync/http_proxy.py @@ -186,6 +186,7 @@ def __init__( origin=proxy_origin, keepalive_expiry=keepalive_expiry, network_backend=network_backend, + ssl_context=ssl_context ) self._proxy_origin = proxy_origin self._remote_origin = remote_origin From 38028e7d0f07264640751dfdfa93e81b9bd96f12 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 6 Dec 2021 15:02:59 +0000 Subject: [PATCH 3/4] Update httpcore/_async/http_proxy.py --- httpcore/_async/http_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpcore/_async/http_proxy.py b/httpcore/_async/http_proxy.py index f99eaac6a..35b5d504c 100644 --- a/httpcore/_async/http_proxy.py +++ b/httpcore/_async/http_proxy.py @@ -186,7 +186,7 @@ def __init__( origin=proxy_origin, keepalive_expiry=keepalive_expiry, network_backend=network_backend, - ssl_context=ssl_context + ssl_context=ssl_context, ) self._proxy_origin = proxy_origin self._remote_origin = remote_origin From 3a2d6c94335acd903036304eedf0dc8a0c129a59 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 6 Dec 2021 15:03:04 +0000 Subject: [PATCH 4/4] Update httpcore/_sync/http_proxy.py --- httpcore/_sync/http_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpcore/_sync/http_proxy.py b/httpcore/_sync/http_proxy.py index 8424b4ebf..f49e80aab 100644 --- a/httpcore/_sync/http_proxy.py +++ b/httpcore/_sync/http_proxy.py @@ -186,7 +186,7 @@ def __init__( origin=proxy_origin, keepalive_expiry=keepalive_expiry, network_backend=network_backend, - ssl_context=ssl_context + ssl_context=ssl_context, ) self._proxy_origin = proxy_origin self._remote_origin = remote_origin