You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bi...@apache.org on 2020/01/09 09:22:45 UTC

[hbase] branch branch-2 updated: Backport "HBASE-23660 hbase:meta's table.jsp ref to wrong rs address" to branch-2 (#1005)

This is an automated email from the ASF dual-hosted git repository.

binlijin pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new 1591c20  Backport "HBASE-23660 hbase:meta's table.jsp ref to wrong rs address" to branch-2 (#1005)
1591c20 is described below

commit 1591c2025e1858de7d075ce57d8f8b5a3a2d983e
Author: binlijin <bi...@gmail.com>
AuthorDate: Thu Jan 9 17:22:34 2020 +0800

    Backport "HBASE-23660 hbase:meta's table.jsp ref to wrong rs address" to branch-2 (#1005)
---
 hbase-server/src/main/resources/hbase-webapps/master/table.jsp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 6416510..4821314 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
@@ -270,7 +270,7 @@
             %>
             <tr>
               <td><%= escapeXml(meta.getRegionNameAsString()) %></td>
-              <td><a href="http://<%= hostAndPort %>/rs-status/"><%= StringEscapeUtils.escapeHtml4(hostAndPort) %></a></td>
+              <td><a href="http://<%= hostAndPort %>/rs-status"><%= StringEscapeUtils.escapeHtml4(hostAndPort) %></a></td>
               <td><%= readReq%></td>
               <td><%= writeReq%></td>
               <td><%= fileSize%></td>
@@ -335,7 +335,7 @@
             %>
             <tr>
               <td><%= escapeXml(meta.getRegionNameAsString()) %></td>
-              <td><a href="http://<%= hostAndPort %>/rs-status/"><%= StringEscapeUtils.escapeHtml4(hostAndPort) %></a></td>
+              <td><a href="http://<%= hostAndPort %>/rs-status"><%= StringEscapeUtils.escapeHtml4(hostAndPort) %></a></td>
               <td><%= String.format("%,1d", compactingCells)%></td>
               <td><%= String.format("%,1d", compactedCells)%></td>
               <td><%= String.format("%,1d", compactingCells - compactedCells)%></td>