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 2009/05/21 21:23:22 UTC

svn commit: r777227 - in /hadoop/hbase/trunk: CHANGES.txt bin/hbase

Author: stack
Date: Thu May 21 19:23:22 2009
New Revision: 777227

URL: http://svn.apache.org/viewvc?rev=777227&view=rev
Log:
HBASE-1395 InfoServers no longer put up a UI

Modified:
    hadoop/hbase/trunk/CHANGES.txt
    hadoop/hbase/trunk/bin/hbase

Modified: hadoop/hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/CHANGES.txt?rev=777227&r1=777226&r2=777227&view=diff
==============================================================================
--- hadoop/hbase/trunk/CHANGES.txt (original)
+++ hadoop/hbase/trunk/CHANGES.txt Thu May 21 19:23:22 2009
@@ -153,6 +153,7 @@
    HBASE-1272  Unreadable log messages -- "... to the only server
                localhost_1237525439599_56094" <- You'd have to be perverse
                to recognize that as a hostname, startcode, and port
+   HBASE-1395  InfoServers no longer put up a UI
 
   IMPROVEMENTS
    HBASE-1089  Add count of regions on filesystem to master UI; add percentage

Modified: hadoop/hbase/trunk/bin/hbase
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/bin/hbase?rev=777227&r1=777226&r2=777227&view=diff
==============================================================================
--- hadoop/hbase/trunk/bin/hbase (original)
+++ hadoop/hbase/trunk/bin/hbase Thu May 21 19:23:22 2009
@@ -118,15 +118,16 @@
   CLASSPATH=${CLASSPATH}:$HBASE_HOME/build
 fi
 
-# for releases, add hbase & webapps to CLASSPATH
+# For releases, add hbase & webapps to CLASSPATH
+# Webapps must come first else it messes up Jetty
+if [ -d "$HBASE_HOME/webapps" ]; then
+  CLASSPATH=${CLASSPATH}:$HBASE_HOME
+fi
 for f in $HBASE_HOME/hbase*.jar; do
   if [ -f $f ]; then
     CLASSPATH=${CLASSPATH}:$f;
   fi
 done
-if [ -d "$HBASE_HOME/webapps" ]; then
-  CLASSPATH=${CLASSPATH}:$HBASE_HOME
-fi
 
 # Add libs to CLASSPATH
 for f in $HBASE_HOME/lib/*.jar; do