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
This happens when the client tries to attach to a channel (this is a previous internal step after which the client can publish/subscribe to messages on the channel) but never gets a response back from the server.
This should only happen when transient errors occur, such as networking errors.
The consequence is that the channel won't receive or send any messages. You probably want to call channel.attach then. If the connection has moved to DISCONNECTED due to the networking error, then when CONNECTED again the attach will be retried. (This could happen automatically, really, but it isn't implemented in this library. I'll bring that up.)
Sorry, I just rechecked and what I said used to be right but it isn't anymore. You don't need to reattach manually; the channel will move to the SUSPENDED state, which will trigger a reattach attempt automatically. So in the end the error is just informative.
As the title says,
I sometimes get an error returned saying "attach timed out" with [ARTErrorInfoStatusCode = 0].
So...
When does this occur? It looks random from our perspective
If it happens, what are the consequences in ignoring the error? Anything i need to do to recover form it?
The text was updated successfully, but these errors were encountered: