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

Fix HTTP2 connections with multiple streams stalling #193

Merged

Commits on Jul 23, 2024

  1. Fix HTTP2 connections with multiple streams stalling

    HTTP2 knows a stream and connection flow-control window. Both windows need
    to be respected. A logic was put in place, to not update the window sizes
    when the stream that sent the data was closed. That's fine. But we do need
    to update the global window, otherwise the global window size permanently
    shrinks by that amount. When reusing a connection many times, this shinks
    the window size down to zero over time, effectively stalling the
    connection.
    Patrick Böker committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    d98aca1 View commit details
    Browse the repository at this point in the history