mirror of https://github.com/grpc/grpc-java.git
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:
parent
b5b7cacba9
commit
06ec0b93a5
|
|
@ -71,7 +71,6 @@ public class TestServiceClient {
|
||||||
} finally {
|
} finally {
|
||||||
client.tearDown();
|
client.tearDown();
|
||||||
}
|
}
|
||||||
System.exit(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private String serverHost = "localhost";
|
private String serverHost = "localhost";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue