vldpyatkov commented on a change in pull request #9579:
URL: https://github.com/apache/ignite/pull/9579#discussion_r754928279
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java
##########
@@ -4569,9 +4569,9 @@ public void awaitLastFut() {
ctx.kernalContext().closure().runLocalSafe((GridPlainRunnable)() -> {
IgniteInternalFuture fut0;
- if (ctx.kernalContext().isStopping())
+ if (ctx.kernalContext().isStopping() ||
ctx.gate().isStopped())
fut0 = new GridFinishedFuture<>(
- new IgniteCheckedException("Operation has
been cancelled (node is stopping)."));
+ new IgniteCheckedException("Operation has
been cancelled (node or cache is stopping)."));
Review comment:
Node is stopping, but cache is stopped)
--
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]