You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/12/23 01:23:48 UTC

[1/2] accumulo git commit: ACCUMULO-3448 Break out to avoid the default case.

Repository: accumulo
Updated Branches:
  refs/heads/master 87a22dd09 -> 87194852f


ACCUMULO-3448 Break out to avoid the default case.


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

Branch: refs/heads/master
Commit: 148e293acce79dcf02fe4bf13a221bf5881dd326
Parents: 87a22dd
Author: Josh Elser <el...@apache.org>
Authored: Mon Dec 22 19:10:54 2014 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Mon Dec 22 19:10:54 2014 -0500

----------------------------------------------------------------------
 fate/src/main/java/org/apache/accumulo/fate/zookeeper/ZooUtil.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/148e293a/fate/src/main/java/org/apache/accumulo/fate/zookeeper/ZooUtil.java
----------------------------------------------------------------------
diff --git a/fate/src/main/java/org/apache/accumulo/fate/zookeeper/ZooUtil.java b/fate/src/main/java/org/apache/accumulo/fate/zookeeper/ZooUtil.java
index 814c042..805bfff 100644
--- a/fate/src/main/java/org/apache/accumulo/fate/zookeeper/ZooUtil.java
+++ b/fate/src/main/java/org/apache/accumulo/fate/zookeeper/ZooUtil.java
@@ -304,6 +304,7 @@ public class ZooUtil {
                   continue;
                 } else if (code2 == Code.CONNECTIONLOSS || code2 == Code.OPERATIONTIMEOUT || code2 == Code.SESSIONEXPIRED) {
                   retryOrThrow(retry, e2);
+                  break;
                 } else {
                   // unhandled exception on setData()
                   throw e2;


[2/2] accumulo git commit: ACCUMULO-3449 Move the log level to debug

Posted by el...@apache.org.
ACCUMULO-3449 Move the log level to debug


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

Branch: refs/heads/master
Commit: 87194852ff2703dbf206e95b527c4714a61e0a4b
Parents: 148e293
Author: Josh Elser <el...@apache.org>
Authored: Mon Dec 22 19:17:40 2014 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Mon Dec 22 19:17:40 2014 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/accumulo/tracer/ZooTraceClient.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/87194852/server/tracer/src/main/java/org/apache/accumulo/tracer/ZooTraceClient.java
----------------------------------------------------------------------
diff --git a/server/tracer/src/main/java/org/apache/accumulo/tracer/ZooTraceClient.java b/server/tracer/src/main/java/org/apache/accumulo/tracer/ZooTraceClient.java
index 7b3ee2e..10dfdc2 100644
--- a/server/tracer/src/main/java/org/apache/accumulo/tracer/ZooTraceClient.java
+++ b/server/tracer/src/main/java/org/apache/accumulo/tracer/ZooTraceClient.java
@@ -105,7 +105,7 @@ public class ZooTraceClient extends SendSpansViaThrift implements Watcher {
       public void run() {
         try {
           updateHostsFromZooKeeper();
-          log.info("Successfully initialized tracer hosts from ZooKeeper");
+          log.debug("Successfully initialized tracer hosts from ZooKeeper");
           // Once this passes, we can issue a shutdown of the pool
           svc.shutdown();
         } catch (Exception e) {