Browse Source

Handle broadcasts to zero clients

Fixes #88
pull/91/head
Miguel Grinberg 8 years ago
parent
commit
af0004d78e
  1. 3
      socketio/asyncio_manager.py

3
socketio/asyncio_manager.py

@ -23,7 +23,8 @@ class AsyncManager(BaseManager):
id = None id = None
tasks.append(self.server._emit_internal(sid, event, data, tasks.append(self.server._emit_internal(sid, event, data,
namespace, id)) namespace, id))
await asyncio.wait(tasks) if tasks != []:
await asyncio.wait(tasks)
async def close_room(self, room, namespace): async def close_room(self, room, namespace):
"""Remove all participants from a room. """Remove all participants from a room.

Loading…
Cancel
Save