You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2008/06/11 02:45:16 UTC

svn commit: r666402 - /hadoop/hbase/trunk/src/webapps/master/table.jsp

Author: stack
Date: Tue Jun 10 17:45:16 2008
New Revision: 666402

URL: http://svn.apache.org/viewvc?rev=666402&view=rev
Log:
Fix toString on .META. start key

Modified:
    hadoop/hbase/trunk/src/webapps/master/table.jsp

Modified: hadoop/hbase/trunk/src/webapps/master/table.jsp
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/src/webapps/master/table.jsp?rev=666402&r1=666401&r2=666402&view=diff
==============================================================================
--- hadoop/hbase/trunk/src/webapps/master/table.jsp (original)
+++ hadoop/hbase/trunk/src/webapps/master/table.jsp Tue Jun 10 17:45:16 2008
@@ -47,7 +47,7 @@
       String url = "http://" + meta.getServer().getHostname() + ":" + infoPort + "/";%> 
 <tr><td><%= Bytes.toString(meta.getRegionName()) %></td>
     <td><a href="<%= url %>"><%= meta.getServer().getHostname() %>:<%= meta.getServer().getPort() %></a></td>
-    <td>-</td><td><%= meta.getStartKey() %></td><td>-</td></tr>
+    <td>-</td><td><%= Bytes.toString(meta.getStartKey()) %></td><td>-</td></tr>
 <%  } %>
 </table>
 <%} else { %>