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

#1247 Fix race condition in HttpProtocol while having multiple proxy settings #1250

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Jul 15, 2024

  1. Fix race condition in HttpProtocol while having multiple proxy settings

    In HttpProtocol implementation, the client builder was singleton and may
    be accessed and modified by different threads at same time. The result
    is that a wrong proxy will be used or a wrong proxy auth will be
    configured.
    
    To fix it, create a local builder insteand of having a field-level
    builder.
    
    Fixes apache#1247
    chhsiao90 committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    bf49afb View commit details
    Browse the repository at this point in the history