Commit 72bdefb0 authored by Victor Stinner's avatar Victor Stinner

Issue #22560: Fix typo: call -> call_soon

parent 042dad72
......@@ -577,7 +577,7 @@ class SSLProtocol(protocols.Protocol):
# _on_handshake_complete() can be called indirectly from
# _process_write_backlog(), and _process_write_backlog() is not
# reentrant.
self._loop.call(self._process_write_backlog)
self._loop.call_soon(self._process_write_backlog)
def _process_write_backlog(self):
# Try to make progress on the write backlog.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment