We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec85c79 commit 5eb1fb3Copy full SHA for 5eb1fb3
uvloop/sslproto.pyx
@@ -571,7 +571,9 @@ class SSLProtocol(object):
571
572
def _check_handshake_timeout(self):
573
if self._in_handshake is True:
574
- aio_logger.warning("%r stalled during handshake", self)
+ aio_logger.warning(
575
+ "SSL handshake for %r is taking longer than %r seconds: "
576
+ "aborting the connection", self, self._ssl_handshake_timeout)
577
self._abort()
578
579
def _on_handshake_complete(self, handshake_exc):
0 commit comments