HBASE-1704 Better zk error when failed connect

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@797711 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-07-25 03:01:57 +00:00
parent 3184fa2979
commit a0f237697e
1 changed files with 2 additions and 2 deletions

View File

@ -349,10 +349,10 @@ public class ZooKeeperWrapper implements HConstants {
return ensureParentExists(znode) && ensureExists(znode);
} catch (KeeperException e) {
LOG.warn("Failed to create " + znode +
" -- check quorum servers, currenty=" + this.quorumServers, e);
" -- check quorum servers, currently=" + this.quorumServers, e);
} catch (InterruptedException e) {
LOG.warn("Failed to create " + znode +
" -- check quorum servers, currenty=" + this.quorumServers, e);
" -- check quorum servers, currently=" + this.quorumServers, e);
}
return false;
}