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

Use proxy_ssl_context as SSL ctx when forwarding #2651

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Jun 28, 2022

  1. Use proxy_ssl_context as SSL ctx when forwarding

        Use proxy_ssl_context when fowarding to both a HTTPS destination
        (which occurs when use_forwarding_for_https=True)
        and to a HTTP destination.
    
        Raise a warning if both a proxy_ssl_context and a ssl_context
        are provided when use_forwarding_for_https=True.
    
        Add tests to verify these cases and modify
        test_proxy_https_target_tls_error in test_proxy_poolmanager
        to account for this new behavior.
    
        Addresses urllib3#2577
    avi364 committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    929fba8 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2022

  1. Remove deprecated setting of ssl_context

    Raise an exception if both a proxy_ssl_context and a ssl_context
    are provided when use_forwarding_for_https=True, instead of
    only raising a warning.
    
    Modify tests to account for change.
    
    Resolves urllib3#2577
    avi364 committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    6b3430f View commit details
    Browse the repository at this point in the history