HBASE-3576 MasterAddressTracker is registered to ZooKeeperWatcher twice

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1074909 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-02-26 19:30:44 +00:00
parent dc5e50b07b
commit 44be5806f3
2 changed files with 1 additions and 1 deletions

View File

@ -116,6 +116,7 @@ Release 0.90.2 - Unreleased
HBASE-3553 HTable ThreadPoolExecutor does not properly initialize
for hbase.htable.threads.max threads
(Himanshu Vashishtha via garyh)
HBASE-3576 MasterAddressTracker is registered to ZooKeeperWatcher twice
IMPROVEMENTS
HBASE-3542 MultiGet methods in Thrift

View File

@ -293,7 +293,6 @@ public class HConnectionManager {
// initialize zookeeper and master address manager
this.zooKeeper = getZooKeeperWatcher();
masterAddressTracker = new MasterAddressTracker(this.zooKeeper, this);
zooKeeper.registerListener(masterAddressTracker);
masterAddressTracker.start();
this.rootRegionTracker = new RootRegionTracker(this.zooKeeper, this);