diff --git a/CHANGES.txt b/CHANGES.txt
index 37c52b6c080..22fd0083775 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -289,6 +289,8 @@ Release 0.21.0 - Unreleased
being eaten (Jean-Daniel Cryans via Stack)
HBASE-2448 Scanner threads are interrupted without acquiring lock properly
(Todd Lipcon via Stack)
+ HBASE-2491 master.jsp uses absolute links to table.jsp. This broke when
+ master.jsp moved under webapps/master(Cristian Ivascu via Stack)
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable
diff --git a/core/src/main/resources/webapps/master/master.jsp b/core/src/main/resources/webapps/master/master.jsp
index fc17c5a2b0f..0ccc9760215 100644
--- a/core/src/main/resources/webapps/master/master.jsp
+++ b/core/src/main/resources/webapps/master/master.jsp
@@ -77,7 +77,7 @@
Description |
- <%= Bytes.toString(HConstants.ROOT_TABLE_NAME) %> |
+ <%= Bytes.toString(HConstants.ROOT_TABLE_NAME) %> |
<% if (showFragmentation) { %>
<%= frags.get("-ROOT-") != null ? frags.get("-ROOT-").intValue() + "%" : "n/a" %> |
<% } %>
@@ -86,7 +86,7 @@
<%
if (onlineRegions != null && onlineRegions.size() > 0) { %>
- <%= Bytes.toString(HConstants.META_TABLE_NAME) %> |
+ <%= Bytes.toString(HConstants.META_TABLE_NAME) %> |
<% if (showFragmentation) { %>
<%= frags.get(".META.") != null ? frags.get(".META.").intValue() + "%" : "n/a" %> |
<% } %>
@@ -110,7 +110,7 @@
<% for(HTableDescriptor htDesc : tables ) { %>
- ><%= htDesc.getNameAsString() %> |
+ ><%= htDesc.getNameAsString() %> |
<% if (showFragmentation) { %>
<%= frags.get(htDesc.getNameAsString()) != null ? frags.get(htDesc.getNameAsString()).intValue() + "%" : "n/a" %> |
<% } %>