You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RuntimeWarning: An HTTPS request is being sent through an HTTPS proxy. This support for TLS in TLS is known to be disabled in the stdlib asyncio (Python <3.11). This is why you'll probably see an error in the log below.
It throws this warning because it's not able to find _start_tls_compatible property on the TCPTransport object (https://github.com/aio-libs/aiohttp/blob/v3.9.1/aiohttp/connector.py#L1054). The same property is present when asyncio is used which provides SelectorSocketTransport as the underlying transport. Is it possible to provide the _start_tls_compatible attribute on the TCPTransport which can help us avoid this warning?
0.19.0
3.10.7
PYTHONASYNCIODEBUG
in env?: Yesaiohttp
(3.9.1
) keeps warning (falsely) about 1It throws this warning because it's not able to find
_start_tls_compatible
property on theTCPTransport
object (https://github.com/aio-libs/aiohttp/blob/v3.9.1/aiohttp/connector.py#L1054). The same property is present whenasyncio
is used which providesSelectorSocketTransport
as the underlying transport. Is it possible to provide the_start_tls_compatible
attribute on theTCPTransport
which can help us avoid this warning?Footnotes
https://github.com/aio-libs/aiohttp/discussions/6044 ↩
The text was updated successfully, but these errors were encountered: