We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b85fd3 commit 447e124Copy full SHA for 447e124
uvloop/sslproto.pyx
@@ -563,10 +563,10 @@ class SSLProtocol(object):
563
# (b'', 1) is a special value in _process_write_backlog() to do
564
# the SSL handshake
565
self._write_backlog.append((b'', 1))
566
- self._loop.call_soon(self._process_write_backlog)
567
self._handshake_timeout_handle = \
568
self._loop.call_later(self._ssl_handshake_timeout,
569
self._check_handshake_timeout)
+ self._process_write_backlog()
570
571
def _check_handshake_timeout(self):
572
if self._in_handshake is True:
0 commit comments