Multiple clients messaging the server simultaneously but not all receives the response #767
Unanswered
bikash8gupta
asked this question in
Q&A
Replies: 1 comment
-
Please provide server logs. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the bug
Whenever multiple clients try to send a message to the server simultaneously, the server only emits once to one of the clients and not to all clients. But it works when multiple clients come one after one and make a join call. The below is the sample code -
This is how I have configured socket.io with aiohttp.
Server Setup
This is how i have declared the namespace -
BaseNamespace.py
CompetitionNamespace.py
Now when multiple clients after making a connection to the server, send a join message, the server only responds to some clients and not all. The server should emit to all clients except one making the join call.
Beta Was this translation helpful? Give feedback.
All reactions