From b65ff70c689e55563d86c1cedc4399aa9ef5f609 Mon Sep 17 00:00:00 2001 From: WillEngFlow <73127315+WillEngFlow@users.noreply.github.com> Date: Fri, 4 Feb 2022 16:27:00 -0500 Subject: [PATCH] Fixed network policy of client_integration_test (#2022) * Fixed network policy of client_integration_test //test/common/integration:client_integration_test requires networking which is not allowed by default. This allows the test to use the localhost network. Signed-off-by: Will --- test/common/integration/BUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/common/integration/BUILD b/test/common/integration/BUILD index 5dafd395dc..737f714d4f 100644 --- a/test/common/integration/BUILD +++ b/test/common/integration/BUILD @@ -7,11 +7,11 @@ envoy_package() envoy_cc_test( name = "client_integration_test", srcs = ["client_integration_test.cc"], + exec_properties = { + # TODO(willengflow): Remove this once the sandboxNetwork=off works for ipv4 localhost addresses. + "sandboxNetwork": "standard", + }, repository = "@envoy", - # TODO(jpsim): Fix remote execution for these tests - tags = [ - "no-remote-exec", - ], deps = [ "//library/common/extensions/filters/http/local_error:config", "//library/common/extensions/filters/http/local_error:filter_cc_proto",