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
aioelasticsearch==0.5.2 elasticsearch==2.4.1
AIOHttpConnection takes use_ssl argument and passes one to the parent's __init__.
AIOHttpConnection
use_ssl
__init__
Then self.use_ssl gets used instead of use_ssl here https://github.com/aio-libs/aioelasticsearch/blob/master/aioelasticsearch/connection.py#L52
self.use_ssl
It works for the latest elasticsearch-py versions, however, it doesn't work with >2.0.0, b/c there's no self.use_ssl = use_ssl there.
elasticsearch-py
>2.0.0
self.use_ssl = use_ssl
The fix is straightforward - use use_ssl directly instead of self.use_ssl.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
AIOHttpConnection
takesuse_ssl
argument and passes one to the parent's__init__
.Then
self.use_ssl
gets used instead ofuse_ssl
herehttps://github.com/aio-libs/aioelasticsearch/blob/master/aioelasticsearch/connection.py#L52
It works for the latest
elasticsearch-py
versions, however, it doesn't work with>2.0.0
, b/c there's noself.use_ssl = use_ssl
there.The fix is straightforward - use
use_ssl
directly instead ofself.use_ssl
.The text was updated successfully, but these errors were encountered: