Repository: ignite Updated Branches: refs/heads/ignite-1093-2 1e041fbad -> 75931082a
1093 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/76665f59 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/76665f59 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/76665f59 Branch: refs/heads/ignite-1093-2 Commit: 76665f5971eac847f6f6d03a2d703f5052ebe92a Parents: 1e041fb Author: Anton Vinogradov <[email protected]> Authored: Thu Oct 22 16:00:55 2015 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Thu Oct 22 16:00:55 2015 +0300 ---------------------------------------------------------------------- .../cache/distributed/dht/preloader/GridDhtPartitionDemander.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/76665f59/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 15e6f03..7d2ec6f 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 @@ -469,7 +469,8 @@ public class GridDhtPartitionDemander { ClusterNode node = cctx.node(id); - assert node != null; + if (node == null) + return; if (!fut.isActual(supply.updateSequence())) // Current future have another update sequence. return; // Supple message based on another future.
