Skip to content

h2: add max_pending_accept_reset_streams configuration option #3201

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

Merged
merged 7 commits into from
Apr 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/server/conn.rs
Co-authored-by: Eliza Weisman <[email protected]>
  • Loading branch information
Noah-Kennedy and hawkw authored Apr 13, 2023
commit e8296d1c5bded88a508f1ca1f35791c30803182d
3 changes: 2 additions & 1 deletion src/server/conn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,8 @@ impl<E> Http<E> {

/// Configures the maximum number of pending reset streams allowed before a GOAWAY will be sent.
///
/// This will default to whatever the default in h2 is. As of v0.3.17, it is 20.
/// This will default to the default value set by the [`h2` crate](https://crates.io/crates/h2).
/// As of v0.3.17, it is 20.
///
/// See <https://github.com/hyperium/hyper/issues/2877> for more information.
#[cfg(feature = "http2")]
Expand Down