horizonzy commented on code in PR #3528:
URL: https://github.com/apache/bookkeeper/pull/3528#discussion_r995274228
##########
bookkeeper-server/src/main/java/org/apache/bookkeeper/proto/PacketProcessorBase.java:
##########
@@ -145,12 +152,12 @@ protected void sendResponseAndWait(int rc, Object
response, OpStatsLogger statsL
try {
ChannelFuture future = channel.writeAndFlush(response);
if (!channel.eventLoop().inEventLoop()) {
- future.await();
+ future.get();
}
- } catch (InterruptedException e) {
+ } catch (ExecutionException | InterruptedException e) {
+ logger.debug("Netty channel write exception. ", e);
Review Comment:
Same reason in above.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]