HBASE-3895 Fix order of parameters after HBASE-1511

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1124358 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-05-18 18:03:39 +00:00
parent 551ea3211f
commit 9e4d90cdf1
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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"
;;