You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by la...@apache.org on 2013/03/04 22:45:56 UTC

svn commit: r1452545 - /hbase/branches/0.95/hbase-server/src/main/resources/hbase-webapps/master/table.jsp

Author: larsh
Date: Mon Mar  4 21:45:56 2013
New Revision: 1452545

URL: http://svn.apache.org/r1452545
Log:
HBASE-6347 -ROOT- and .META. are stale in table.jsp if they moved

Modified:
    hbase/branches/0.95/hbase-server/src/main/resources/hbase-webapps/master/table.jsp

Modified: hbase/branches/0.95/hbase-server/src/main/resources/hbase-webapps/master/table.jsp
URL: http://svn.apache.org/viewvc/hbase/branches/0.95/hbase-server/src/main/resources/hbase-webapps/master/table.jsp?rev=1452545&r1=1452544&r2=1452545&view=diff
==============================================================================
--- hbase/branches/0.95/hbase-server/src/main/resources/hbase-webapps/master/table.jsp (original)
+++ hbase/branches/0.95/hbase-server/src/main/resources/hbase-webapps/master/table.jsp Mon Mar  4 21:45:56 2013
@@ -212,7 +212,7 @@
 <%
   // NOTE: Presumes one meta region only.
   HRegionInfo meta = HRegionInfo.FIRST_META_REGIONINFO;
-  ServerName metaLocation = master.getCatalogTracker().getMetaLocation();
+  ServerName metaLocation = master.getCatalogTracker().waitForMeta(1);
   for (int i = 0; i < 1; i++) {
     String url = "http://" + metaLocation.getHostname() + ":" + infoPort + "/";
 %>