Skip to content

Commit

Permalink
remove tcp proxy (#15059)
Browse files Browse the repository at this point in the history
Signed-off-by: Asra Ali <[email protected]>
  • Loading branch information
asraa authored Feb 18, 2021
1 parent b2f3a11 commit ff9c09f
Showing 1 changed file with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,13 @@ std::vector<absl::string_view> UberFilterFuzzer::filterNames() {
const auto factories = Registry::FactoryRegistry<
Server::Configuration::NamedNetworkFilterConfigFactory>::factories();
const std::vector<absl::string_view> supported_filter_names = {
NetworkFilterNames::get().ClientSslAuth,
NetworkFilterNames::get().ExtAuthorization,
NetworkFilterNames::get().ClientSslAuth, NetworkFilterNames::get().ExtAuthorization,
// A dedicated http_connection_manager fuzzer can be found in
// test/common/http/conn_manager_impl_fuzz_test.cc
NetworkFilterNames::get().HttpConnectionManager,
NetworkFilterNames::get().LocalRateLimit,
NetworkFilterNames::get().RateLimit,
NetworkFilterNames::get().Rbac,
NetworkFilterNames::get().TcpProxy,

NetworkFilterNames::get().HttpConnectionManager, NetworkFilterNames::get().LocalRateLimit,
NetworkFilterNames::get().RateLimit, NetworkFilterNames::get().Rbac,
// TODO(asraa): Remove when fuzzer sets up connections for TcpProxy properly.
// NetworkFilterNames::get().TcpProxy,
};
// Check whether each filter is loaded into Envoy.
// Some customers build Envoy without some filters. When they run fuzzing, the use of a filter
Expand Down

0 comments on commit ff9c09f

Please sign in to comment.