Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions docs/root/version_history/current.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Bug Fixes
---------
*Changes expected to improve the state of the world and are unlikely to have negative effects*

* http codec: remove redundant Warn log in HTTP codec.
Comment thread
ankatare marked this conversation as resolved.
Outdated
* listener: fix a crash when updating any listener that does not bind to port.

Removed Config or Runtime
Expand Down
3 changes: 0 additions & 3 deletions source/common/http/codec_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,6 @@ void CodecClient::onEvent(Network::ConnectionEvent event) {
StreamInfo::ResponseFlag::UpstreamProtocolError);
}
}
} else {
ENVOY_CONN_LOG(warn, "Connection is closed by {} during connecting.", *connection_,
(event == Network::ConnectionEvent::RemoteClose ? "peer" : "self"));
}
while (!active_requests_.empty()) {
// Fake resetting all active streams so that reset() callbacks get invoked.
Expand Down