Browse Source
Handle CancelledError in async pubsub managers (Fixes #750)
pull/789/head
Miguel Grinberg
4 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
1 changed files with
3 additions and
0 deletions
-
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() |
|
|
|