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
I'm not sure if this is the intended behavior or not, but I noticed that if you try to connect to a server and it fails the first attempt, it will simply stop retrying any additional connections. It only seems to attempt retrying if you've had one successful connection at some point.
It was a bit unclear how the logic worked while quickly looking through the connection method, so I'm not 100% sure if that's how it's supposed to work? I ended up setting .connection.connected = true;and .connection.registered = true; manually before connecting which takes care of it, but of course that feels wrong and hacky :)
At least as a user, I would expect connect() to keep retrying no matter what (if the auto_reconnect option is true).
The text was updated successfully, but these errors were encountered:
I'm not sure if this is the intended behavior or not, but I noticed that if you try to connect to a server and it fails the first attempt, it will simply stop retrying any additional connections. It only seems to attempt retrying if you've had one successful connection at some point.
It was a bit unclear how the logic worked while quickly looking through the connection method, so I'm not 100% sure if that's how it's supposed to work? I ended up setting
.connection.connected = true;
and.connection.registered = true;
manually before connecting which takes care of it, but of course that feels wrong and hacky :)At least as a user, I would expect connect() to keep retrying no matter what (if the auto_reconnect option is true).
The text was updated successfully, but these errors were encountered: