-
-
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
SSL issue with aiohttp.request #206
Comments
i see two options here:
we may allow to pass sslcontext as ctor parameter to TCPConnector, but this requires some discussion. |
I like I'll make a PR. |
I like the idea adding sslcontext to TCPConnector. |
Thanks, please boost 0.12.1 when possible |
It should be 0.13.0, not 0.12.1 On Mon, Dec 29, 2014 at 2:18 PM, AlgoTrader notifications@github.com
Thanks, |
-1 for 0.13, this change doesn't break api and it is actually very small. On Monday, December 29, 2014, Andrew Svetlov notifications@github.com
|
Ok. I'll release 0.12.1 in couple hours then. On Mon, Dec 29, 2014 at 6:24 PM, Nikolay Kim notifications@github.com
Thanks, |
Maybe we should wait for websockets? On Monday, December 29, 2014, Andrew Svetlov notifications@github.com
|
I just do not want to release too much versions. Also I don't think Ok, let's release all changes we have now On Monday, December 29, 2014, Andrew Svetlov notifications@github.com
|
0.13.0 released |
I need to pass the client request my own SSLContext. Unfortunately, the case is really tough, as req.ssl is set to True/False with
self.ssl = scheme == 'https'
That's cause problems. I have to subclass TCPConnector to overwrite sslcontext with proper context.
The problem is req.ssl can be True/False or SSLContext, but there is absolutly no easy way to pass SSLContext without replacing it with True/False. verify_ssl generates new SSLContext but not what I need.
Any ideas? If it helps, I need something like this:
The text was updated successfully, but these errors were encountered: