-
-
Notifications
You must be signed in to change notification settings - Fork 183
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
endpoint.py
line 307: TypeError: init() got an unexpected keyword argument 'verify_ssl'
#861
Comments
Thanks, will look asap if someone else doesn't get to it before me |
going to handle this in #856 |
|
actually I think this is not a bug, we're using aiohttp 3.7.4.post0 w/ the most recent aiobotocore w/o issue. I think maybe you were testing with a master release of aiohttp and not official release |
I see—the bug report from @rickvanhoof didn't show the aiohttp version so this seems plausible—perhaps he is/was using another library that depended on a non-official version. Thanks for looking into this so quickly—if I see any more like this I'll be sure to ask for the |
closing since we now test with 3.7.4.post0 and it works fine. Please re-open when you have more information |
Describe the bug
I received this bug report for a library I maintain that uses
s3fs
, which in its recent version usesaiobotocore
. I have traced the error to what appears to be a clear problem in the source code: this line passes the keyword argumentverify_ssl
to theaiohttp.TCPConnector
constructor. However, the keyword is not valid in the aiohttp source code. It looks to me at first glance that theverify_ssl
keyword argument was changed to justssl
but it hasn't been changed in theaiobotocore
library.I have not attempted to reproduce this bug myself, but given how straightforward it appears to be, I thought it was worth filing the bug report anyway. If this appears to be something else, then @rickvanhoof may be able to provide context for the failure.
Checklist
pip check
passes without errorspip freeze
resultspip freeze results
Environment:
Additional context
noahbenson/neuropythy#20
The text was updated successfully, but these errors were encountered: