You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/03/30 17:25:32 UTC

[22/34] ignite git commit: IGNITE-3477 - Fixed error message

IGNITE-3477 - Fixed error message


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

Branch: refs/heads/ignite-3477-master
Commit: 95b48a9ab61a90daf13b51d5ffc06c67de49545a
Parents: 7ac0fd0
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Wed Mar 29 15:37:12 2017 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Wed Mar 29 19:29:38 2017 +0300

----------------------------------------------------------------------
 .../cache/distributed/dht/atomic/GridDhtAtomicCache.java           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/95b48a9a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java
index cfeb9d4..04c6ff2 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicCache.java
@@ -3202,7 +3202,7 @@ public class GridDhtAtomicCache<K, V> extends GridDhtCacheAdapter<K, V> {
                 }
             }
             catch (NodeStoppingException e){
-                U.error(log, "Failed to update key:" + key + " on backup, node stopping", e);
+                U.error(log, "Failed to update key on backup (local node is stopping):" + key, e);
 
                 return;
             }