Repository: ignite Updated Branches: refs/heads/ignite-1.5 e1554df45 -> 40d7fcdc6
ignite-1.5 Added more information in warning message. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/40d7fcdc Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/40d7fcdc Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/40d7fcdc Branch: refs/heads/ignite-1.5 Commit: 40d7fcdc6cd37dba5f37c467c82dd006608bf543 Parents: e1554df Author: sboikov <[email protected]> Authored: Fri Dec 11 11:27:12 2015 +0300 Committer: sboikov <[email protected]> Committed: Fri Dec 11 11:27:12 2015 +0300 ---------------------------------------------------------------------- .../dht/preloader/GridDhtPartitionsExchangeFuture.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/40d7fcdc/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 31bfa79..854726f 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 @@ -910,8 +910,8 @@ public class GridDhtPartitionsExchangeFuture extends GridFutureAdapter<AffinityT * */ private void dumpPendingObjects() { - U.warn(log, "Failed to wait for partition release future. Dumping pending objects that might be the cause: " + - cctx.localNodeId()); + U.warn(log, "Failed to wait for partition release future [topVer=" + topologyVersion() + + ", node=" + cctx.localNodeId() + "]. Dumping pending objects that might be the cause: "); cctx.exchange().dumpPendingObjects(); }
