-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gateway v3 #236
Merged
Merged
Gateway v3 #236
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
seailz
added
status: in progress
PR or issue is currently in progress
type: feature
Issue or PR is a feature that should be implemented
priority: high
High priority
LARGE
PR or issue with a large amount of additions
IMPORTANT
Important PR or issue that is important to be added/implemented soon.
type: enhancement
status: awaiting testing
labels
Sep 25, 2023
seailz
added
status: completed
and removed
status: in progress
PR or issue is currently in progress
labels
Sep 25, 2023
awaiting long-term testing |
…t to send heartbeats to closed connections due to the logic of the Gateway.java class Gateway.java creates a new WebSocket instance for each connection, but HeartLogic.java wasn't being told to stop sending heartbeats after a connection had closed, causing a broken pipe SocketException. This has been fixed by stopping the heartbeat manager on a disconnect.
…entation where having an active status rotor would cause the gateway to crash after a disconnect and attempted reconnect This was due to the status rotor attempting to send a message when it wasn't authorized to do so, since the ready event hadn't yet been received.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
IMPORTANT
Important PR or issue that is important to be added/implemented soon.
LARGE
PR or issue with a large amount of additions
priority: high
High priority
status: completed
type: enhancement
type: feature
Issue or PR is a feature that should be implemented
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.
PR Details
What you've changed
Closes #0
Description
Version 3 implementation of the Gateway, designed to be much more stable, reliable, and well implemented.
Currently implemented the base of it and it needs proper implementation with the rest of the codebase.