Repository: ignite Updated Branches: refs/heads/ignite-5578-locJoin 1541ffe3f -> 7ea291587
ignite-5578 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/7ea29158 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/7ea29158 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/7ea29158 Branch: refs/heads/ignite-5578-locJoin Commit: 7ea29158704cf118b084a45cd4216aea5cd9026b Parents: 1541ffe Author: sboikov <[email protected]> Authored: Thu Jul 13 15:00:18 2017 +0300 Committer: sboikov <[email protected]> Committed: Thu Jul 13 15:00:18 2017 +0300 ---------------------------------------------------------------------- .../distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/7ea29158/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java index a15f628..6b6ee88 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsExchangeFuture.java @@ -1415,7 +1415,6 @@ public class GridDhtPartitionsExchangeFuture extends GridDhtTopologyFutureAdapte public void onReceive(final ClusterNode node, final GridDhtPartitionsSingleMessage msg) { assert msg != null; assert exchId.equals(msg.exchangeId()) : msg; - assert msg.lastVersion() != null : msg; if (isDone()) { if (log.isDebugEnabled()) @@ -1427,6 +1426,7 @@ public class GridDhtPartitionsExchangeFuture extends GridDhtTopologyFutureAdapte } else { assert !msg.client() : msg; + assert msg.lastVersion() != null : msg; updateLastVersion(msg.lastVersion());
