From c57a4be05d3bb074ba8320d5fedf8fbb0371b204 Mon Sep 17 00:00:00 2001 From: Menghan Li Date: Wed, 10 Mar 2021 15:42:45 -0800 Subject: [PATCH] Disable fault injection env var in xds interop tests (#25676) --- tools/run_tests/run_xds_tests.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/run_tests/run_xds_tests.py b/tools/run_tests/run_xds_tests.py index 83a38ec35f4..e0abc85037f 100755 --- a/tools/run_tests/run_xds_tests.py +++ b/tools/run_tests/run_xds_tests.py @@ -2595,7 +2595,12 @@ try: client_env['GRPC_XDS_BOOTSTRAP'] = bootstrap_path client_env['GRPC_XDS_EXPERIMENTAL_CIRCUIT_BREAKING'] = 'true' client_env['GRPC_XDS_EXPERIMENTAL_ENABLE_TIMEOUT'] = 'true' - client_env['GRPC_XDS_EXPERIMENTAL_FAULT_INJECTION'] = 'true' + # Temporarily turn off fault injection, because HTTPFault filter isn't + # handled correctly yet in CPP and Go. And setting would break all the + # other tests. Uncomment the following line when the support is + # complete. + # + # client_env['GRPC_XDS_EXPERIMENTAL_FAULT_INJECTION'] = 'true' test_results = {} failed_tests = [] for test_case in args.test_case: