-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
verify_ssl for aiohttp.request #127
Comments
passing i am -1 @asvetlov what do you think? |
I agree that |
One challenge this causes is needing to make sure that connector always gets properly closed. |
@amfarrell, you can use connector with |
I did not find a way to pass
verify_ssl
toaiohttp.request
. It somehow seems implemented inClientRequest
andTCPConnector
, but it is not passed on inaiohttp.request
.A workaround for now is to pass
connector=aiohttp.TCPConnector(force_close=True, verify_ssl=False)
, but it's not very usable.The text was updated successfully, but these errors were encountered: