Setting ackTimeOut on io() causes all emits to repeat themselves at the time interval specified by ackTimeOut. #5311
-
Since I don't know if this behavior is default normal behavior, I did not start a bug report. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! When using the io.on("connection", (socket) => {
socket.on("my event", (cb) => {
cb();
});
}); |
Beta Was this translation helpful? Give feedback.
Hi!
When using the
retries
option, every event must be acknowledged by the server, even if it's a basicsocket.emit("my event")
: