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:
parent
551ea3211f
commit
9e4d90cdf1
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue