From 038c7c744c41330797dc6115a51cab488ffa3ed7 Mon Sep 17 00:00:00 2001 From: Toshihiro Suzuki Date: Mon, 27 Aug 2018 12:22:27 +0900 Subject: [PATCH] HBASE-20317 Backport HBASE-20261 "Table page (table.jsp) in Master UI does not show replicaIds for hbase meta table" to branch-1 --- hbase-server/src/main/resources/hbase-webapps/master/table.jsp | 7 +++++++ 1 file changed, 7 insertions(+) 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 6c99ba7..cee2416 100644 --- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp +++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp @@ -192,6 +192,13 @@ if ( fqtn != null ) { <%= escapeXml(Bytes.toString(meta.getEndKey())) %> - - +<% + if (withReplica) { +%> + <%= meta.getReplicaId() %> +<% + } +%> <% } %> <%} %> -- 2.10.1 (Apple Git-78)