We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
jsb_*
jsb_http_proxy
jsb_https_proxy
See the proxy selection code in
try: proxies = get_proxies(opts, app_configs) if (HTTP_PROXY) and (len(proxies) == 0): proxies["http"] = HTTP_PROXY if (HTTPS_PROXY) and (len(proxies) == 0): proxies["https"] = HTTPS_PROXY if (len(proxies) == 0): proxies = None except Exception as proxy_error: proxies = None
get_proxies(...)
None
len(proxies)
TypeError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
jsb_*
keys, the proxy is not used.Describe How to Reproduce
jsb_http_proxy
andjsb_https_proxy
keys, not globally.Possible cause
See the proxy selection code in
get_proxies(...)
returnsNone
in my scenario,len(proxies)
raisesTypeError
and thejsb_*
values are never set.jsb_*
values when there are no global proxies configured? Shouldn't it be the opposite?The text was updated successfully, but these errors were encountered: