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:
parent
dc5e50b07b
commit
44be5806f3
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue