You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2016/12/06 09:17:08 UTC

ignite git commit: IGNITE-4242 ExchangeManager should wait for cache rebalancing in async way

Repository: ignite
Updated Branches:
  refs/heads/ignite-4242 d8332c862 -> 310912d9a


IGNITE-4242 ExchangeManager should wait for cache rebalancing in async way


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/310912d9
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/310912d9
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/310912d9

Branch: refs/heads/ignite-4242
Commit: 310912d9aed42ef004a5166677165603c18c8914
Parents: d8332c8
Author: Anton Vinogradov <av...@apache.org>
Authored: Tue Dec 6 12:16:49 2016 +0300
Committer: Anton Vinogradov <av...@apache.org>
Committed: Tue Dec 6 12:16:49 2016 +0300

----------------------------------------------------------------------
 .../distributed/dht/preloader/GridDhtPartitionDemander.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/310912d9/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 e24d19a..a6808c7 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
@@ -788,10 +788,10 @@ public class GridDhtPartitionDemander {
         /** */
         private static final long serialVersionUID = 1L;
 
-        /** Should EVT_CACHE_REBALANCE_STARTED event be sent of not. */
+        /** Should EVT_CACHE_REBALANCE_STARTED event be sent or not. */
         private final AtomicBoolean startedEvtSent;
 
-        /** Should EVT_CACHE_REBALANCE_STOPPED event be sent of not. */
+        /** Should EVT_CACHE_REBALANCE_STOPPED event be sent or not. */
         private final AtomicBoolean stoppedEvtSent;
 
         /** */