Browse Source

Handle CancelledError in async pubsub managers (Fixes #750)

pull/789/head
Miguel Grinberg 4 years ago
parent
commit
a813bde062
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 3
      src/socketio/asyncio_pubsub_manager.py

3
src/socketio/asyncio_pubsub_manager.py

@ -1,3 +1,4 @@
import asyncio
from functools import partial
import uuid
@ -148,6 +149,8 @@ class AsyncPubSubManager(AsyncManager):
while True:
try:
message = await self._listen()
except asyncio.CancelledError: # pragma: no cover
break
except:
import traceback
traceback.print_exc()

Loading…
Cancel
Save