From 06ec0b93a5d3c63b4ddf47ad6d3a883532eee10a Mon Sep 17 00:00:00 2001 From: Stanley Cheung Date: Wed, 8 Mar 2023 11:53:42 -0800 Subject: [PATCH] interop-testing: Do not System.exit(0) from interop client After #9937 was merged, the Java observability tests start to fail. This System.exit(0) call in the existing Interop client main() method prevented execution to continue in the new combined Observability Interop test binary here. (The new binary is calling the old binary's main() method.) --- .../main/java/io/grpc/testing/integration/TestServiceClient.java | 1 - 1 file changed, 1 deletion(-) diff --git a/interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java b/interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java index 8e5cdca220..0328debc3a 100644 --- a/interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java +++ b/interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java @@ -71,7 +71,6 @@ public class TestServiceClient { } finally { client.tearDown(); } - System.exit(0); } private String serverHost = "localhost";