-
Notifications
You must be signed in to change notification settings - Fork 26
Example TCP echo server code does not exit cleanly #27
Comments
Hi @hollymcr, This happens because a client is connected but it has not sent its data yet. That means the self._loop.create_task(res) I found a related issue on bugs.python.org: issue 28212. |
To be clear, whether or not any data has been sent isn't the issue, just whether the connection is still open. In the example the connection is closed immediately after data is received but that wouldn't generally be the case in real use.
Does this mean that the example is correct but the bug is in the library? What is the implication of not calling loop.close()? |
You're right, but it was the simplest way to reproduce your issue. Actually, it can happen even if the connection has been closed. Consider the following handler: async def handle_echo(reader, writer):
writer.close()
await asyncio.sleep(100)
That is my opinion yes. I just checked and the problem still appear in v3.7.0b3.
Consider the following handler: async def handle_echo(reader, writer):
try:
writer.close()
await asyncio.sleep(100)
finally:
print('some cleanup') If you comment out |
I shut down the project: #33 |
The example TCP echo server code does not exit cleanly from KeyboardInterrupt if a client is connected:
Removing the last line (loop.close()) resolves the issue, although I'm not sure why.
The text was updated successfully, but these errors were encountered: