HBASE-1377 RS address is null in master web UI
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@772390 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
734890772f
commit
e78e38dce8
|
@ -111,6 +111,7 @@ Release 0.20.0 - Unreleased
|
||||||
(Thomas Schneider via Andrew Purtell)
|
(Thomas Schneider via Andrew Purtell)
|
||||||
HBASE-1374 NPE out of ZooKeeperWrapper.loadZooKeeperConfig
|
HBASE-1374 NPE out of ZooKeeperWrapper.loadZooKeeperConfig
|
||||||
HBASE-1336 Splitting up the compare of family+column into 2 different compare
|
HBASE-1336 Splitting up the compare of family+column into 2 different compare
|
||||||
|
HBASE-1377 RS address is null in master web UI
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||||
|
|
|
@ -71,6 +71,7 @@ public class HServerInfo implements WritableComparable<HServerInfo> {
|
||||||
this.startCode = other.getStartCode();
|
this.startCode = other.getStartCode();
|
||||||
this.load = other.getLoad();
|
this.load = other.getLoad();
|
||||||
this.infoPort = other.getInfoPort();
|
this.infoPort = other.getInfoPort();
|
||||||
|
this.name = other.getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue