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/05/18 20:03:39 UTC

svn commit: r1124358 - in /hbase/trunk: CHANGES.txt bin/hbase-daemon.sh

Author: stack
Date: Wed May 18 18:03:39 2011
New Revision: 1124358

URL: http://svn.apache.org/viewvc?rev=1124358&view=rev
Log:
HBASE-3895 Fix order of parameters after HBASE-1511

Modified:
    hbase/trunk/CHANGES.txt
    hbase/trunk/bin/hbase-daemon.sh

Modified: hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1124358&r1=1124357&r2=1124358&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Wed May 18 18:03:39 2011
@@ -259,6 +259,7 @@ Release 0.90.4 - Unreleased
    HBASE-3878 Hbase client throws NoSuchElementException (Ted Yu)
    HBASE-3878 Hbase client throws NoSuchElementException (Ted Yu)
    HBASE-3881 Add disable balancer in graceful_stop.sh script
+   HBASE-3895 Fix order of parameters after HBASE-1511
 
   IMPROVEMENT
    HBASE-3882 hbase-config.sh needs to be updated so it can auto-detects the

Modified: hbase/trunk/bin/hbase-daemon.sh
URL: http://svn.apache.org/viewvc/hbase/trunk/bin/hbase-daemon.sh?rev=1124358&r1=1124357&r2=1124358&view=diff
==============================================================================
--- hbase/trunk/bin/hbase-daemon.sh (original)
+++ hbase/trunk/bin/hbase-daemon.sh Wed May 18 18:03:39 2011
@@ -143,7 +143,7 @@ case $startStop in
     echo "`ulimit -a`" >> $loglog 2>&1
     nohup nice -n $HBASE_NICENESS "$HBASE_HOME"/bin/hbase \
         --config "${HBASE_CONF_DIR}" \
-        $command $startStop "$@" > "$logout" 2>&1 < /dev/null &
+        $command "$@" $startStop > "$logout" 2>&1 < /dev/null &
     echo $! > $pid
     sleep 1; head "$logout"
     ;;