Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion ci/filter_example_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
set -e

# This is the hash on https://github.com/envoyproxy/envoy-filter-example.git we pin to.
ENVOY_FILTER_EXAMPLE_GITSHA="ac6a66a4a1c08138ccc03c23aafc9637b2df55a1"
ENVOY_FILTER_EXAMPLE_GITSHA="85b7e0ed452f0987b480feb9cfe46abc914aca67"
ENVOY_FILTER_EXAMPLE_SRCDIR="${BUILD_DIR}/envoy-filter-example"

# shellcheck disable=SC2034
Expand Down
2 changes: 0 additions & 2 deletions test/config/utility.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1040,8 +1040,6 @@ void ConfigHelper::addVirtualHost(const envoy::config::route::v3::VirtualHost& v
storeHttpConnectionManager(hcm_config);
}

void ConfigHelper::addFilter(const std::string& config) { prependFilter(config); }

void ConfigHelper::prependFilter(const std::string& config) {
RELEASE_ASSERT(!finalized_, "");
envoy::extensions::filters::network::http_connection_manager::v3::HttpConnectionManager
Expand Down
4 changes: 0 additions & 4 deletions test/config/utility.h
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,6 @@ class ConfigHelper {
// Add an HTTP filter prior to existing filters.
void prependFilter(const std::string& filter_yaml);

// Add an HTTP filter prior to existing filters.
// TODO(rgs1): remove once envoy-filter-example has been updated.
void addFilter(const std::string& filter_yaml);

// Add a network filter prior to existing filters.
void addNetworkFilter(const std::string& filter_yaml);

Expand Down