From e62faa3535fe2a9b3560495ef0f9af4a2eb7d321 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Fri, 19 Jun 2009 21:39:40 +0000 Subject: [PATCH] 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 --- CHANGES.txt | 1 + bin/zookeeper.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 2a5ffd30daa..e2510915cc4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/bin/zookeeper.sh b/bin/zookeeper.sh index 583f2bdef28..a379fb0b268 100755 --- a/bin/zookeeper.sh +++ b/bin/zookeeper.sh @@ -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