We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02eb53b commit 07e528fCopy full SHA for 07e528f
src/codec/framed_write.rs
@@ -23,6 +23,7 @@ macro_rules! limited_write_buf {
23
pub struct FramedWrite<T, B> {
24
/// Upstream `AsyncWrite`
25
inner: T,
26
+ final_flush_done: bool,
27
28
encoder: Encoder<B>,
29
}
@@ -89,6 +90,7 @@ where
89
90
};
91
FramedWrite {
92
inner,
93
+ final_flush_done: false,
94
encoder: Encoder {
95
hpack: hpack::Encoder::default(),
96
buf: Cursor::new(BytesMut::with_capacity(DEFAULT_BUFFER_CAPACITY)),
@@ -165,7 +167,10 @@ where
165
167
166
168
/// Close the codec
169
pub fn shutdown(&mut self, cx: &mut Context) -> Poll<io::Result<()>> {
- ready!(self.flush(cx))?;
170
+ if !self.final_flush_done {
171
+ ready!(self.flush(cx))?;
172
+ self.final_flush_done = true;
173
+ }
174
Pin::new(&mut self.inner).poll_shutdown(cx)
175
176
0 commit comments