From b17d59a313611cad2c8e35a18a375f3d13a9a7c7 Mon Sep 17 00:00:00 2001 From: Mike Schore Date: Tue, 26 Apr 2022 13:31:07 +0800 Subject: [PATCH] cleanup: remove comment in Http::Client that no longer applies Signed-off-by: Mike Schore --- library/common/http/client.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/library/common/http/client.cc b/library/common/http/client.cc index 8f22a151e8..951d219b0c 100644 --- a/library/common/http/client.cc +++ b/library/common/http/client.cc @@ -590,12 +590,6 @@ namespace { const LowerCaseString ClusterHeader{"x-envoy-mobile-cluster"}; const LowerCaseString ProtocolHeader{"x-envoy-mobile-upstream-protocol"}; -// Alternate clusters included here are a stopgap to make it less likely for a given connection -// class to suffer "catastrophic" failure of all outbound requests due to a network blip, by -// distributing requests across a minimum of two potential connections per connection class. -// Long-term we will be working to generally provide more responsive connection handling within -// Envoy itself. - const char* BaseCluster = "base"; const char* H2Cluster = "base_h2"; const char* H3Cluster = "base_h3";