Skip to content

Commit

Permalink
interop-testing: Do not System.exit(0) from interop client
Browse files Browse the repository at this point in the history
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.)
  • Loading branch information
stanley-cheung committed Mar 8, 2023
1 parent b5b7cac commit 06ec0b9
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public static void main(String[] args) throws Exception {
} finally {
client.tearDown();
}
System.exit(0);
}

private String serverHost = "localhost";
Expand Down

0 comments on commit 06ec0b9

Please sign in to comment.