mirror of https://github.com/python/cpython
asyncio: When not closing the connection after receiving EOF, still remove the read handler.
This commit is contained in:
parent
4574b49703
commit
1f683bbe71
|
@ -468,7 +468,12 @@ class _SelectorSocketTransport(_SelectorTransport):
|
|||
self._protocol.data_received(data)
|
||||
else:
|
||||
keep_open = self._protocol.eof_received()
|
||||
if not keep_open:
|
||||
if keep_open:
|
||||
# We're keeping the connection open so the
|
||||
# protocol can write more, but we still can't
|
||||
# receive more, so remove the reader callback.
|
||||
self._loop.remove_reader(self._sock_fd)
|
||||
else:
|
||||
self.close()
|
||||
|
||||
def write(self, data):
|
||||
|
|
Loading…
Reference in New Issue