Replies: 1 comment
-
This was not the correct behavior, it should now be fixed: socketio/socket.io-client@d54d12c Thanks for the heads-up 👍 |
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
-
I have this basic middleware that throws an error when a client's authentication fails. The problem is the clients keep trying to reconnect after getting the
connect_error
. How can I send an error to the client to stop trying to reconnect?I know I can handle it on the client-side not to reconnect when getting the
connect_error
event, but I want the server-side to handle this, similar tosocket.disconnect()
that causes the client not to try to reconnect.Beta Was this translation helpful? Give feedback.
All reactions