HBASE-1650 HBASE-1551 broke the ability to manage non-regionserver start-up/shut down. ie: you cant start/stop thrift on a cluster anymore

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@794011 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-07-14 18:47:25 +00:00
parent 6c7ef5bfc7
commit e9c8ea8156
2 changed files with 6 additions and 7 deletions

View File

@ -260,8 +260,11 @@ Release 0.20.0 - Unreleased
HBASE-1646 Scan-s can't set a Filter (Doğacan Güney via Stack)
HBASE-1649 ValueFilter may not reset its internal state
(Doğacan Güney via Stack)
HBASE-1651 client is broken, it requests ROOT region location from ZK too
much
HBASE-1651 client is broken, it requests ROOT region location from ZK too
much
HBASE-1650 HBASE-1551 broke the ability to manage non-regionserver
start-up/shut down. ie: you cant start/stop thrift on a cluster
anymore
IMPROVEMENTS
HBASE-1089 Add count of regions on filesystem to master UI; add percentage

View File

@ -42,15 +42,11 @@ args="--config ${HBASE_CONF_DIR} $remote_cmd"
command=$2
case $command in
(regionserver)
exec "$bin/regionservers.sh" $args
;;
(zookeeper)
exec "$bin/zookeepers.sh" $args
;;
(*)
echo $usage
exit 1
exec "$bin/regionservers.sh" $args
;;
esac