Skip to content

Commit e981a91

Browse files
authored
fix(server): change max_local_error_reset_streams function to &mut self (#3820)
BREAKING CHANGE: `http2::Builder::max_local_error_reset_streams()` now takes `&mut self` and returns `&mut Self`. In practice, this shouldn't break almost anyone. It was the wrong receiver and return types.
1 parent 30f2961 commit e981a91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/conn/http2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ impl<E> Builder<E> {
141141
/// See <https://rustsec.org/advisories/RUSTSEC-2024-0003.html> for more information.
142142
#[cfg(feature = "http2")]
143143
#[cfg_attr(docsrs, doc(cfg(feature = "http2")))]
144-
pub fn max_local_error_reset_streams(mut self, max: impl Into<Option<usize>>) -> Self {
144+
pub fn max_local_error_reset_streams(&mut self, max: impl Into<Option<usize>>) -> &mut Self {
145145
self.h2_builder.max_local_error_reset_streams = max.into();
146146
self
147147
}

0 commit comments

Comments
 (0)