Skip to content
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 11 commits into from
Sep 27, 2023
Merged

Gateway v3 #236

merged 11 commits into from
Sep 27, 2023

Commits on Sep 25, 2023

  1. Configuration menu
    Copy the full SHA
    5f8866c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c5d150f View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. fix(heart): fixed an issue with HeartLogic.java where it would attemp…

    …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.
    seailz committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    a4add7a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    329f54d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6e919fa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0f75f39 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bcf6bb6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f217d41 View commit details
    Browse the repository at this point in the history
  7. fix(gateway / status rotor): fixed issues with the new gateway implem…

    …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.
    seailz committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    1ac4c53 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8c93196 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7568477 View commit details
    Browse the repository at this point in the history