mirror of https://github.com/apache/lucene.git
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:
parent
f42caf79bd
commit
c0ae2fa0c1
|
@ -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
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue