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 2011/01/05 01:46:19 UTC

svn commit: r1055253 - in /hbase/branches/0.90: CHANGES.txt src/main/resources/hbase-webapps/master/table.jsp

Author: stack
Date: Wed Jan  5 00:46:19 2011
New Revision: 1055253

URL: http://svn.apache.org/viewvc?rev=1055253&view=rev
Log:
HBASE-3402 Web UI shows two META regions

Modified:
    hbase/branches/0.90/CHANGES.txt
    hbase/branches/0.90/src/main/resources/hbase-webapps/master/table.jsp

Modified: hbase/branches/0.90/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1055253&r1=1055252&r2=1055253&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Wed Jan  5 00:46:19 2011
@@ -774,6 +774,7 @@ Release 0.90.0 - Unreleased
    HBASE-3344  Master aborts after RPC to server that was shutting down
    HBASE-3392  Update backport of InputSampler to reflect MAPREDUCE-1820
    HBASE-3408  AssignmentManager NullPointerException
+   HBASE-3402  Web UI shows two META regions
 
 
   IMPROVEMENTS

Modified: hbase/branches/0.90/src/main/resources/hbase-webapps/master/table.jsp
URL: http://svn.apache.org/viewvc/hbase/branches/0.90/src/main/resources/hbase-webapps/master/table.jsp?rev=1055253&r1=1055252&r2=1055253&view=diff
==============================================================================
--- hbase/branches/0.90/src/main/resources/hbase-webapps/master/table.jsp (original)
+++ hbase/branches/0.90/src/main/resources/hbase-webapps/master/table.jsp Wed Jan  5 00:46:19 2011
@@ -100,7 +100,7 @@
   // NOTE: Presumes one meta region only.
   HRegionInfo meta = HRegionInfo.FIRST_META_REGIONINFO;
   HServerAddress metaLocation = master.getCatalogTracker().getMetaLocation();
-  for (int i = 0; i <= 1; i++) {
+  for (int i = 0; i < 1; i++) {
     int infoPort = master.getServerManager().getHServerInfo(metaLocation).getInfoPort();
     String url = "http://" + metaLocation.getHostname() + ":" + infoPort + "/";
 %>