Skip to content
Merged
Changes from all commits
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
2 changes: 2 additions & 0 deletions source/common/http/http2/codec_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1528,6 +1528,8 @@ Status ConnectionImpl::onStreamClose(StreamImpl* stream, uint32_t error_code) {
// Any unconsumed data must be consumed before the stream is deleted.
// nghttp2 does not appear to track this internally, and any stream deleted
// with outstanding window will contribute to a slow connection-window leak.
ENVOY_CONN_LOG(debug, "Recouping {} bytes of flow control window for stream {}.", connection_,
stream->unconsumed_bytes_, stream_id);
if (use_new_codec_wrapper_) {
adapter_->MarkDataConsumedForStream(stream_id, stream->unconsumed_bytes_);
stream->unconsumed_bytes_ = 0;
Expand Down