Skip to content

Commit 07e528f

Browse files
authored
Fix poll_flush after poll_shutdown (#836)
1 parent 02eb53b commit 07e528f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/codec/framed_write.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ macro_rules! limited_write_buf {
2323
pub struct FramedWrite<T, B> {
2424
/// Upstream `AsyncWrite`
2525
inner: T,
26+
final_flush_done: bool,
2627

2728
encoder: Encoder<B>,
2829
}
@@ -89,6 +90,7 @@ where
8990
};
9091
FramedWrite {
9192
inner,
93+
final_flush_done: false,
9294
encoder: Encoder {
9395
hpack: hpack::Encoder::default(),
9496
buf: Cursor::new(BytesMut::with_capacity(DEFAULT_BUFFER_CAPACITY)),
@@ -165,7 +167,10 @@ where
165167

166168
/// Close the codec
167169
pub fn shutdown(&mut self, cx: &mut Context) -> Poll<io::Result<()>> {
168-
ready!(self.flush(cx))?;
170+
if !self.final_flush_done {
171+
ready!(self.flush(cx))?;
172+
self.final_flush_done = true;
173+
}
169174
Pin::new(&mut self.inner).poll_shutdown(cx)
170175
}
171176
}

0 commit comments

Comments
 (0)