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
When I follow the instructions in auth.md, I get the following errors
cannot import name 'Urllib3AWSV4SignerAuth' from 'opensearchpy'
cannot import name 'RequestHttpConnection' from 'opensearchpy'
cannot import name 'RequestsAWSV4SignerAuth' from 'opensearchpy'
It seems to work when I replace instances of Urllib3AWSV4SignerAuth with AWSV4SignerAuth.
Urllib3AWSV4SignerAuth
AWSV4SignerAuth
Urllib3HttpConnection, Urllib3AWSV4SignerAuth
RequestHttpConnection, RequestsAWSV4SignerAuth
RequestHttpConnection
RequestsHttpConnection
No import errors and successful OpenSearch API requests.
The text was updated successfully, but these errors were encountered:
Support for Urllib3 Sigv4 was added in #547 and just hasn't been released yet. Add your +1 top #561.
You can use opensearch-py from HEAD if you want to try it out!
Sorry, something went wrong.
No branches or pull requests
What is the bug?
When I follow the instructions in auth.md, I get the following errors
It seems to work when I replace instances of
Urllib3AWSV4SignerAuth
withAWSV4SignerAuth
.How can one reproduce the bug?
Urllib3HttpConnection, Urllib3AWSV4SignerAuth
in line 1 withRequestHttpConnection, RequestsAWSV4SignerAuth
.RequestHttpConnection
in line 1 withRequestsHttpConnection
.What is the expected behavior?
No import errors and successful OpenSearch API requests.
The text was updated successfully, but these errors were encountered: