SOLR-5676: SolrCloud updates rejected if talking to secure ZooKeeper.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1563189 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2014-01-31 17:39:03 +00:00
parent f42caf79bd
commit c0ae2fa0c1
2 changed files with 5 additions and 2 deletions

View File

@ -244,6 +244,9 @@ Bug Fixes
* SOLR-5673: HTTPSolrServer doesn't set own property correctly in
setFollowRedirects. (Frank Wesemann via shalin)
* SOLR-5676: SolrCloud updates rejected if talking to secure ZooKeeper.
(Greg Chanan via Mark Miller)
Optimizations
----------------------

View File

@ -195,8 +195,8 @@ public class ConnectionManager implements Watcher {
log.info("zkClient has disconnected");
disconnected();
connectionStrategy.disconnected();
} else {
disconnected();
} else if (state == KeeperState.AuthFailed) {
log.warn("zkClient received AuthFailed");
}
}