diff --git a/ci/build_setup.sh b/ci/build_setup.sh index 271d12176efd..b487c25a5efc 100755 --- a/ci/build_setup.sh +++ b/ci/build_setup.sh @@ -88,7 +88,7 @@ if [ "$1" != "-nofetch" ]; then fi # This is the hash on https://github.com/envoyproxy/envoy-filter-example.git we pin to. - (cd "${ENVOY_FILTER_EXAMPLE_SRCDIR}" && git fetch origin && git checkout -f 3e5b73305b961526ffcee7584251692a9a3ce4b3) + (cd "${ENVOY_FILTER_EXAMPLE_SRCDIR}" && git fetch origin && git checkout -f 6c0625cb4cc9a21df97cef2a1d065463f2ae81ae) cp -f "${ENVOY_SRCDIR}"/ci/WORKSPACE.filter.example "${ENVOY_FILTER_EXAMPLE_SRCDIR}"/WORKSPACE fi diff --git a/test/integration/integration.h b/test/integration/integration.h index 5c3807349ddb..535b05d3af22 100644 --- a/test/integration/integration.h +++ b/test/integration/integration.h @@ -126,14 +126,6 @@ class BaseIntegrationTest : Logger::Loggable { BaseIntegrationTest(Network::Address::IpVersion version, TestTimeSystemPtr time_system, const std::string& config = ConfigHelper::HTTP_PROXY_CONFIG); - // TODO(jmarantz): this alternate constructor is a temporary hack to allow - // envoy-filter-example/echo2_integration_test.cc to compile so CI for #4512 - // can pass. Once that passes, we can up update filter-examples so it can see - // the 3-arg version of BaseIntegrationTest, and remove this constructor - // variant. - BaseIntegrationTest(Network::Address::IpVersion version, const std::string& config) - : BaseIntegrationTest(version, realTime(), config) {} - virtual ~BaseIntegrationTest() {} /**