You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/11/22 22:26:01 UTC

[2/3] git commit: ACCUMULO-1911 increase the zookeeper poll rate to 5 seconds

ACCUMULO-1911 increase the zookeeper poll rate to 5 seconds


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

Branch: refs/heads/master
Commit: 40d491807dfc473b396c8444772b91e5f1057288
Parents: 435b5c7
Author: Eric Newton <er...@gmail.com>
Authored: Fri Nov 22 16:25:55 2013 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Nov 22 16:25:55 2013 -0500

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


http://git-wip-us.apache.org/repos/asf/accumulo/blob/40d49180/server/monitor/src/main/java/org/apache/accumulo/monitor/ZooKeeperStatus.java
----------------------------------------------------------------------
diff --git a/server/monitor/src/main/java/org/apache/accumulo/monitor/ZooKeeperStatus.java b/server/monitor/src/main/java/org/apache/accumulo/monitor/ZooKeeperStatus.java
index a4a8911..3cac98d 100644
--- a/server/monitor/src/main/java/org/apache/accumulo/monitor/ZooKeeperStatus.java
+++ b/server/monitor/src/main/java/org/apache/accumulo/monitor/ZooKeeperStatus.java
@@ -132,7 +132,7 @@ public class ZooKeeperStatus implements Runnable {
         }
       }
       status = update;
-      UtilWaitThread.sleep(1000);
+      UtilWaitThread.sleep(5 * 1000);
     }
   }