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:
parent
3184fa2979
commit
a0f237697e
|
@ -349,10 +349,10 @@ public class ZooKeeperWrapper implements HConstants {
|
||||||
return ensureParentExists(znode) && ensureExists(znode);
|
return ensureParentExists(znode) && ensureExists(znode);
|
||||||
} catch (KeeperException e) {
|
} catch (KeeperException e) {
|
||||||
LOG.warn("Failed to create " + znode +
|
LOG.warn("Failed to create " + znode +
|
||||||
" -- check quorum servers, currenty=" + this.quorumServers, e);
|
" -- check quorum servers, currently=" + this.quorumServers, e);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
LOG.warn("Failed to create " + znode +
|
LOG.warn("Failed to create " + znode +
|
||||||
" -- check quorum servers, currenty=" + this.quorumServers, e);
|
" -- check quorum servers, currently=" + this.quorumServers, e);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue