You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by br...@apache.org on 2018/08/27 02:58:33 UTC

hbase git commit: HBASE-20317 Backport HBASE-20261 "Table page (table.jsp) in Master UI does not show replicaIds for hbase meta table" to branch-1

Repository: hbase
Updated Branches:
  refs/heads/branch-1.4 201609882 -> d965436ee


HBASE-20317 Backport HBASE-20261 "Table page (table.jsp) in Master UI does not show replicaIds for hbase meta table" to branch-1


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

Branch: refs/heads/branch-1.4
Commit: d965436ee17d862b7136488daac5d69e6f921220
Parents: 2016098
Author: Toshihiro Suzuki <br...@gmail.com>
Authored: Mon Aug 27 11:55:52 2018 +0900
Committer: Toshihiro Suzuki <br...@gmail.com>
Committed: Mon Aug 27 11:57:21 2018 +0900

----------------------------------------------------------------------
 .../src/main/resources/hbase-webapps/master/table.jsp         | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/d965436e/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
index 44f0a64..2d77e57 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
@@ -269,6 +269,13 @@ if ( fqtn != null ) {
     <td><%= locality%></td>
     <td><%= escapeXml(Bytes.toString(meta.getStartKey())) %></td>
     <td><%= escapeXml(Bytes.toString(meta.getEndKey())) %></td>
+<%
+      if (withReplica) {
+%>
+    <td><%= meta.getReplicaId() %></td>
+<%
+      }
+%>
 </tr>
 <%  } %>
 <%} %>