Repository: ignite Updated Branches: refs/heads/ignite-1093-2 f62669444 -> 55c8ce448
1093 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/55c8ce44 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/55c8ce44 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/55c8ce44 Branch: refs/heads/ignite-1093-2 Commit: 55c8ce448d9cb0f8f44711e490de3a56f7555085 Parents: f626694 Author: Anton Vinogradov <[email protected]> Authored: Mon Oct 26 19:12:04 2015 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Mon Oct 26 19:12:04 2015 +0300 ---------------------------------------------------------------------- .../cache/distributed/dht/preloader/GridDhtPartitionDemander.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/55c8ce44/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionDemander.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionDemander.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionDemander.java index 6479542..7643b0a 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionDemander.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionDemander.java @@ -588,6 +588,9 @@ public class GridDhtPartitionDemander { log.debug("Node left during rebalancing [node=" + node.id() + ", msg=" + e.getMessage() + ']'); } + catch (IllegalStateException e) { + U.error(log, "Failed to handle supply message.", e);//grid is stopping. + } } /**
