HBASE-4035 Fix local-master-backup.sh - parameter order wrong

(Lars George via Ted Yu)



git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1139682 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-06-26 00:52:36 +00:00
parent 93b2e8d2bc
commit 3f66fb713f
2 changed files with 4 additions and 2 deletions

View File

@ -137,6 +137,8 @@ Release 0.91.0 - Unreleased
(Akash Ashok via Ted Yu)
HBASE-4028 Hmaster crashes caused by splitting log.
(gaojinchao via Ted Yu)
HBASE-4035 Fix local-master-backup.sh - parameter order wrong
(Lars George via Ted Yu)
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

@ -21,9 +21,9 @@ run_master () {
DN=$2
export HBASE_IDENT_STRING="$USER-$DN"
HBASE_MASTER_ARGS="\
--backup \
-D hbase.master.port=`expr 60000 + $DN` \
-D hbase.master.info.port=`expr 60010 + $DN`"
-D hbase.master.info.port=`expr 60010 + $DN` \
--backup"
"$bin"/hbase-daemon.sh $1 master $HBASE_MASTER_ARGS
}