HBASE-20261 Table page (table.jsp) in Master UI does not show replicaIds for hbase meta table

Signed-off-by: Josh Elser <elserj@apache.org>
This commit is contained in:
Toshihiro Suzuki 2018-03-23 12:37:09 +09:00 committed by Josh Elser
parent ad47c2daf4
commit 88eac3ca18
1 changed files with 7 additions and 0 deletions

View File

@ -245,6 +245,13 @@ if ( fqtn != null ) {
<td><%= locality%></td> <td><%= locality%></td>
<td><%= escapeXml(Bytes.toString(meta.getStartKey())) %></td> <td><%= escapeXml(Bytes.toString(meta.getStartKey())) %></td>
<td><%= escapeXml(Bytes.toString(meta.getEndKey())) %></td> <td><%= escapeXml(Bytes.toString(meta.getEndKey())) %></td>
<%
if (withReplica) {
%>
<td><%= meta.getReplicaId() %></td>
<%
}
%>
</tr> </tr>
<% } %> <% } %>
<%} %> <%} %>