sp-2 minor
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/bbeac6b2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/bbeac6b2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/bbeac6b2 Branch: refs/heads/ignite-437-sqltests Commit: bbeac6b24c94152a9c567b490900d3f3bdb65f8a Parents: 2871d5d Author: Yakov Zhdanov <yzhda...@gridgain.com> Authored: Thu Mar 26 10:05:51 2015 +0300 Committer: Yakov Zhdanov <yzhda...@gridgain.com> Committed: Thu Mar 26 10:05:51 2015 +0300 ---------------------------------------------------------------------- .../processors/cache/distributed/near/GridNearGetFuture.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/bbeac6b2/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearGetFuture.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearGetFuture.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearGetFuture.java index 9f8f550..cb547ad 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearGetFuture.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearGetFuture.java @@ -512,9 +512,9 @@ public final class GridNearGetFuture<K, V> extends GridCompoundIdentityFuture<Ma if (keys != null && keys.containsKey(key)) { if (remapCnt.incrementAndGet() > MAX_REMAP_CNT) { - onDone(new ClusterTopologyCheckedException("Failed to remap key to a new node after " + MAX_REMAP_CNT - + " attempts (key got remapped to the same node) [key=" + key + ", node=" + - U.toShortString(primary) + ", mappings=" + mapped + ']')); + onDone(new ClusterTopologyCheckedException("Failed to remap key to a new node after " + + MAX_REMAP_CNT + " attempts (key got remapped to the same node) " + + "[key=" + key + ", node=" + U.toShortString(primary) + ", mappings=" + mapped + ']')); return savedVers; }