We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c2a11 commit 20dd0e5Copy full SHA for 20dd0e5
tests/common/src/main/java/tech/ydb/test/integration/docker/GrpcProxyServer.java
@@ -62,6 +62,12 @@ public EndpointRecord endpoint() {
62
@Override
63
public void close() {
64
server.shutdown();
65
+ try {
66
+ server.awaitTermination(60, TimeUnit.SECONDS);
67
+ } catch (InterruptedException ex) {
68
+ logger.error("cannot await proxy server closing", ex);
69
+ Thread.currentThread().interrupt();
70
+ }
71
}
72
73
private static class CallProxy<ReqT, RespT> {
0 commit comments