Try to fix invalid sessions received when reconnecting to the Gateway #592
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
A few users have been experiencing
INVALID_SESSION
events after their client reconnects to the Gateway, for no apparent reason. Testing reveals this is pretty easy to reproduce simply by cutting the client's internet connection and reconnecting it once the reconnect loop starts (it's also easier to reproduce with lower ping intervals).A theory I have as to why this happens is that when we disconnect with the intent to reconnect later (or when a ping fails, in which case we also try to reconnect), the websocket is closed with a 1000 (when we close it) or a 1001 (when a ping fails). Discord considers these "normal" close codes, and terminates the session. When we then try to resume, the session is already closed.
At least, that's my theory. For now I've removed the ping interval (since heartbeats effectively do the same thing) and changed all close codes to be non-"normal" (other than when disposing, since that is a case where we do want Discord to end the session).
Type of change
Checklist:
dart analyze
ormake analyze
and fixed all issuesdart format --set-exit-if-changed -l 160 ./lib
ormake format
and fixed all issues