diff options
Diffstat (limited to 'ext/node')
-rw-r--r-- | ext/node/ops/http2.rs | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/ext/node/ops/http2.rs b/ext/node/ops/http2.rs index d12e108e6..d877a5b14 100644 --- a/ext/node/ops/http2.rs +++ b/ext/node/ops/http2.rs @@ -456,24 +456,21 @@ fn poll_data_or_trailers( cx: &mut std::task::Context, body: &mut RecvStream, ) -> Poll<Result<DataOrTrailers, h2::Error>> { - loop { - if let Poll::Ready(trailers) = body.poll_trailers(cx) { - if let Some(trailers) = trailers? { - return Poll::Ready(Ok(DataOrTrailers::Trailers(trailers))); - } else { - return Poll::Ready(Ok(DataOrTrailers::Eof)); - } - } - if let Poll::Ready(data) = body.poll_data(cx) { - if let Some(data) = data { - return Poll::Ready(Ok(DataOrTrailers::Data(data?))); - } - // If data is None, loop one more time to check for trailers - continue; + if let Poll::Ready(trailers) = body.poll_trailers(cx) { + if let Some(trailers) = trailers? { + return Poll::Ready(Ok(DataOrTrailers::Trailers(trailers))); + } else { + return Poll::Ready(Ok(DataOrTrailers::Eof)); } - // Return pending here as poll_data will keep the waker - return Poll::Pending; } + if let Poll::Ready(Some(data)) = body.poll_data(cx) { + let data = data?; + body.flow_control().release_capacity(data.len())?; + return Poll::Ready(Ok(DataOrTrailers::Data(data))); + // If `poll_data` returns `Ready(None)`, poll one more time to check for trailers + } + // Return pending here as poll_data will keep the waker + Poll::Pending } #[op2(async)] |