Repository: ignite Updated Branches: refs/heads/ignite-6748 b1cbdb1c0 -> c9f070712
IGNITE-6748 Debug further Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/c9f07071 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/c9f07071 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/c9f07071 Branch: refs/heads/ignite-6748 Commit: c9f070712e0f43ceb1427d3d2cf9fa6c80f40978 Parents: b1cbdb1 Author: Alexey Goncharuk <[email protected]> Authored: Fri Oct 27 15:42:51 2017 +0300 Committer: Alexey Goncharuk <[email protected]> Committed: Fri Oct 27 15:42:51 2017 +0300 ---------------------------------------------------------------------- .../distributed/dht/preloader/InitNewCoordinatorFuture.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/c9f07071/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/InitNewCoordinatorFuture.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/InitNewCoordinatorFuture.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/InitNewCoordinatorFuture.java index 8e57bc2..4fd12d6 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/InitNewCoordinatorFuture.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/InitNewCoordinatorFuture.java @@ -113,6 +113,10 @@ public class InitNewCoordinatorFuture extends GridCompoundFuture { nodes.add(node); } + else { + if (log.isInfoEnabled() && !node.isLocal()) + log.info("Skikpping node for state restore: " + node); + } } if (exchFut.context().mergeExchanges() && !curDiscoCache.version().equals(discoCache.version())) {
