HBASE-1549 in zoo.cfg, use localhost instead of 127.0.0.1?

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@786673 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-06-19 21:39:40 +00:00
parent dfbcd9ea6b
commit e62faa3535
2 changed files with 2 additions and 1 deletions

View File

@ -203,6 +203,7 @@ Release 0.20.0 - Unreleased
HBASE-1488 After 1304 goes in, fix and reenable test of thrift, mr indexer,
and merge tool
HBASE-1531 Change new Get to use new filter API
HBASE-1549 in zookeeper.sh, use localhost instead of 127.0.0.1
IMPROVEMENTS
HBASE-1089 Add count of regions on filesystem to master UI; add percentage

View File

@ -53,7 +53,7 @@ if [ "$HBASE_MANAGES_ZK" = "" ]; then
fi
if [ "$HBASE_MANAGES_ZK" = "true" ]; then
ssh $HBASE_SSH_OPTS 127.0.0.1 $"${@// /\\ }" 2>&1 | sed "s/^/localhost: /" &
ssh $HBASE_SSH_OPTS localhost $"${@// /\\ }" 2>&1 | sed "s/^/localhost: /" &
if [ "$HBASE_SLAVE_SLEEP" != "" ]; then
sleep $HBASE_SLAVE_SLEEP
fi