From ee6163435be32f0efd3ad068e90ea89c974991c3 Mon Sep 17 00:00:00 2001 From: birenroy Date: Fri, 18 Oct 2024 12:06:27 -0400 Subject: [PATCH] http: initializes a field of ConnectionManagerImpl::ActiveStream::State. (#36642) While debugging an issue, it became clear that this field is not properly initialized. Commit Message: Additional Description: Risk Level: Testing: Docs Changes: Release Notes: Platform Specific Features: --------- Signed-off-by: Biren Roy --- source/common/http/conn_manager_impl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/common/http/conn_manager_impl.h b/source/common/http/conn_manager_impl.h index d4f73ccef45d..ffa0aab7f652 100644 --- a/source/common/http/conn_manager_impl.h +++ b/source/common/http/conn_manager_impl.h @@ -338,7 +338,8 @@ class ConnectionManagerImpl : Logger::Loggable, : codec_saw_local_complete_(false), codec_encode_complete_(false), on_reset_stream_called_(false), is_zombie_stream_(false), successful_upgrade_(false), is_internally_destroyed_(false), is_internally_created_(false), is_tunneling_(false), - decorated_propagate_(true), deferred_to_next_io_iteration_(false) {} + decorated_propagate_(true), deferred_to_next_io_iteration_(false), + deferred_end_stream_(false) {} // It's possibly for the codec to see the completed response but not fully // encode it.