You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2014/03/27 17:38:35 UTC

git commit: ACCUMULO-2520 change new log message about invalid delets from err to warn

Repository: accumulo
Updated Branches:
  refs/heads/1.4.5-SNAPSHOT 3bf240429 -> 461910148


ACCUMULO-2520 change new log message about invalid delets from err to warn


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

Branch: refs/heads/1.4.5-SNAPSHOT
Commit: 461910148732e952131548ec7bbebb22dd79c8b8
Parents: 3bf2404
Author: Keith Turner <kt...@apache.org>
Authored: Thu Mar 27 12:31:06 2014 -0400
Committer: Keith Turner <kt...@apache.org>
Committed: Thu Mar 27 12:31:06 2014 -0400

----------------------------------------------------------------------
 .../java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/46191014/src/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
----------------------------------------------------------------------
diff --git a/src/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java b/src/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
index d09c557..f9023b2 100644
--- a/src/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
+++ b/src/server/src/main/java/org/apache/accumulo/server/gc/SimpleGarbageCollector.java
@@ -454,7 +454,7 @@ public class SimpleGarbageCollector implements Iface {
     for (Iterator<String> iterator = candidates.iterator(); iterator.hasNext();) {
       String candidate = (String) iterator.next();
       if (!isValidCandidate(candidate)) {
-        log.error("Ingoring invalid deletion candidate " + candidate);
+        log.warn("Ingoring invalid deletion candidate " + candidate);
         iterator.remove();
       }
     }