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.)
This commit is contained in:
Stanley Cheung 2023-03-08 11:53:42 -08:00 committed by GitHub
parent b5b7cacba9
commit 06ec0b93a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -71,7 +71,6 @@ public class TestServiceClient {
} finally { } finally {
client.tearDown(); client.tearDown();
} }
System.exit(0);
} }
private String serverHost = "localhost"; private String serverHost = "localhost";