Browse Source

AsyncPubSubManager does not await for can_disconnect (#488)

pull/494/head
Andrei Neagu 5 years ago
committed by GitHub
parent
commit
b0518936b9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      socketio/asyncio_pubsub_manager.py
  2. 2
      tests/asyncio/test_asyncio_pubsub_manager.py

2
socketio/asyncio_pubsub_manager.py

@ -72,7 +72,7 @@ class AsyncPubSubManager(AsyncManager):
async def can_disconnect(self, sid, namespace): async def can_disconnect(self, sid, namespace):
if self.is_connected(sid, namespace): if self.is_connected(sid, namespace):
# client is in this server, so we can disconnect directly # client is in this server, so we can disconnect directly
return super().can_disconnect(sid, namespace) return await super().can_disconnect(sid, namespace)
else: else:
# client is in another server, so we post request to the queue # client is in another server, so we post request to the queue
await self._publish({'method': 'disconnect', 'sid': sid, await self._publish({'method': 'disconnect', 'sid': sid,

2
tests/asyncio/test_asyncio_pubsub_manager.py

@ -118,7 +118,7 @@ class TestAsyncPubSubManager(unittest.TestCase):
def test_can_disconnect(self): def test_can_disconnect(self):
self.pm.connect('123', '/') self.pm.connect('123', '/')
self.assertTrue(_run(self.pm.can_disconnect('123', '/'))) self.assertTrue(_run(self.pm.can_disconnect('123', '/')) is True)
_run(self.pm.can_disconnect('123', '/foo')) _run(self.pm.can_disconnect('123', '/foo'))
self.pm._publish.mock.assert_called_once_with( self.pm._publish.mock.assert_called_once_with(
{'method': 'disconnect', 'sid': '123', 'namespace': '/foo'}) {'method': 'disconnect', 'sid': '123', 'namespace': '/foo'})

Loading…
Cancel
Save