Skip to content

Commit

Permalink
remove unrelated change
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Dec 29, 2024
1 parent 248aba0 commit ffafa4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/socketio/async_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ async def _handle_disconnect(self, eio_sid, namespace, reason=None):
self.manager.pre_disconnect(sid, namespace=namespace)
await self._trigger_event('disconnect', namespace, sid,
reason or self.reason.CLIENT_DISCONNECT)
await self.manager.disconnect(sid, namespace, reason=reason or self.reason.CLIENT_DISCONNECT, ignore_queue=True)
await self.manager.disconnect(sid, namespace, ignore_queue=True)

async def _handle_event(self, eio_sid, namespace, id, data):
"""Handle an incoming client event."""
Expand Down

0 comments on commit ffafa4f

Please sign in to comment.