blob: 1e9868073f78920bf1ab1f75a4ca27b2ee8dfd7d [file] [log] [blame]
Fix a race condition in SSLProtocol.connection_made() of asyncio.sslproto:
start immediately the handshake instead of using call_soon(). Previously,
data_received() could be called before the handshake started, causing the
handshake to hang or fail.