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/29 12:37:24 UTC

[6/6] 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/4e42bb8a
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/4e42bb8a
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/4e42bb8a

Branch: refs/heads/ignite-3477-master
Commit: 4e42bb8a1bc9aa863449b86253a30fa88ae07086
Parents: 2672b29
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 15:37:12 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/4e42bb8a/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;
             }