Jackie-Jiang commented on code in PR #11746: URL: https://github.com/apache/pinot/pull/11746#discussion_r1355932764
########## pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/MailboxSendOperator.java: ########## @@ -147,12 +150,12 @@ protected TransferableBlock getNextBlock() { } } - private void sendTransferableBlock(TransferableBlock block) + private boolean sendTransferableBlock(TransferableBlock block) throws Exception { - _exchange.send(block); if (LOGGER.isDebugEnabled()) { LOGGER.debug("==[SEND]== Block " + block + " sent from: " + _context.getId()); } + return _exchange.send(block); Review Comment: `SEND` is the name of the operator lol -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org