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
5 changes: 4 additions & 1 deletion source/common/http/filter_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,10 @@ class OverridableRemoteSocketAddressSetterStreamInfo : public StreamInfo::Stream

void setDownstreamRemoteAddress(
const Network::Address::InstanceConstSharedPtr& downstream_remote_address) {
ASSERT(overridden_downstream_remote_address_ == nullptr);
// TODO(rgs1): we should assert overridden_downstream_remote_address_ is nullptr,
// but we are currently relaxing this as a workaround to:
//
// https://github.com/envoyproxy/envoy/pull/14432#issuecomment-758167614
overridden_downstream_remote_address_ = downstream_remote_address;
}

Expand Down