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
trust_env
aiohttp.ClientSession
I want to pass trust_env=True to the aiohttp.ClientSession here:
trust_env=True
opensearch-py/opensearchpy/_async/http_aiohttp.py
Lines 356 to 366 in 03b72c3
This will allow allow proxy configuration via HTTPS_PROXY environment variables. See https://docs.aiohttp.org/en/latest/client_advanced.html?highlight=proxy#proxy-support
HTTPS_PROXY
AsyncOpenSearch to accept the trust_env keyword argument and pass it onto the connection class.
AsyncOpenSearch
The text was updated successfully, but these errors were encountered:
@michaeloliverx I have made a PR to solve this issue 372
Sorry, something went wrong.
Allow passing trust_env to aiohttp.ClientSession
b8df821
Fixes opensearch-project#368 Signed-off-by: Michael Oliver <michael@michaeloliver.dev>
Allow passing trust_env to aiohttp.ClientSession (#438)
4dba35d
Fixes #368 Signed-off-by: Michael Oliver <michael@michaeloliver.dev>
Successfully merging a pull request may close this issue.
Is your feature request related to a problem?
I want to pass
trust_env=True
to theaiohttp.ClientSession
here:opensearch-py/opensearchpy/_async/http_aiohttp.py
Lines 356 to 366 in 03b72c3
This will allow allow proxy configuration via
HTTPS_PROXY
environment variables.See https://docs.aiohttp.org/en/latest/client_advanced.html?highlight=proxy#proxy-support
What solution would you like?
AsyncOpenSearch
to accept thetrust_env
keyword argument and pass it onto the connection class.The text was updated successfully, but these errors were encountered: