mirror of https://github.com/grpc/grpc-java.git
benchmarks: Ensure ELGs used by TransportBenchmark.NETTY_LOCAL are shutdown
This was an omission from #5492, sorry! Without it there are some ugly warnings in the log.
This commit is contained in:
parent
759e7a7fec
commit
a8c73811dd
|
|
@ -105,6 +105,7 @@ public class TransportBenchmark {
|
||||||
.eventLoopGroup(group)
|
.eventLoopGroup(group)
|
||||||
.channelType(LocalChannel.class)
|
.channelType(LocalChannel.class)
|
||||||
.negotiationType(NegotiationType.PLAINTEXT);
|
.negotiationType(NegotiationType.PLAINTEXT);
|
||||||
|
groupToShutdown = group;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case NETTY_EPOLL:
|
case NETTY_EPOLL:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue