aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanley Cheung <stanleycheung@google.com>2023-03-08 11:53:42 -0800
committerEric Anderson <ejona@google.com>2023-03-21 16:16:41 -0700
commit132bf3e573652e9b843ceb87844271029020c9c2 (patch)
treeb773ef034a14adc6f5a8c240697ee5241612d468
parent85ce900dfcb637eb7e90119fda3b22295bc6b74e (diff)
downloadgrpc-grpc-java-132bf3e573652e9b843ceb87844271029020c9c2.tar.gz
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.)
-rw-r--r--interop-testing/src/main/java/io/grpc/testing/integration/TestServiceClient.java1
1 files changed, 0 insertions, 1 deletions
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 8e5cdca22..0328debc3 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";