You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed two issues with WebSocket disconnection in Transport.js:
The reconnection_attempts counter is reset to 0 every time a WebSocket closes, so the counter never exceeds 1.
If the disconnect method is called while the reconnect timer is running, the timer is not stopped, so a new WebSocket connection is made later (when UA thinks it has stopped).
Pull request to follow.
The text was updated successfully, but these errors were encountered:
Noticed two issues with WebSocket disconnection in Transport.js:
reconnection_attempts
counter is reset to 0 every time a WebSocket closes, so the counter never exceeds 1.disconnect
method is called while the reconnect timer is running, the timer is not stopped, so a new WebSocket connection is made later (when UA thinks it has stopped).Pull request to follow.
The text was updated successfully, but these errors were encountered: