zstan commented on a change in pull request #8858:
URL: https://github.com/apache/ignite/pull/8858#discussion_r611450691
##########
File path:
modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ExchangeServiceImpl.java
##########
@@ -116,12 +122,18 @@ public MessageService messageService() {
/** {@inheritDoc} */
@Override public void closeOutbox(UUID nodeId, UUID qryId, long
fragmentId, long exchangeId) throws IgniteCheckedException {
- messageService().send(nodeId, new OutboxCloseMessage(qryId,
fragmentId, exchangeId));
+ if (messageService().localNode().equals(nodeId))
Review comment:
we need to be sure that _exchangeService().closeOutbox_ will complete
before _ctx.cancel();_ will be called.
--
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]