korlov42 commented on a change in pull request #8842:
URL: https://github.com/apache/ignite/pull/8842#discussion_r586775248
##########
File path:
modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ExchangeServiceImpl.java
##########
@@ -197,8 +198,10 @@ protected void onMessage(UUID nodeId,
QueryBatchAcknowledgeMessage msg) {
try {
outbox.onAcknowledge(nodeId, msg.batchId());
}
- catch (Throwable t) {
- outbox.onError(t);
+ catch (Throwable e) {
+ outbox.onError(e);
+
+ throw new IgniteException("Unexpected exception", e);
}
}
else if (log.isDebugEnabled()) {
Review comment:
seems like you've missed one more place. PLease see `protected void
onMessage(UUID nodeId, QueryBatchMessage msg)`
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]