mirror of https://github.com/apache/lucene.git
SOLR-14317: HttpClusterStateProvider throws exception when only one node down (Closes #1342)
This commit is contained in:
parent
9de6811706
commit
782ded2d7a
|
@ -96,6 +96,8 @@ Bug Fixes
|
|||
* SOLR-14302: Ensure Solr always includes the stacktrace for exceptions by using '-OmitStackTraceInFastThrow'
|
||||
(hossman)
|
||||
|
||||
* SOLR-14317: HttpClusterStateProvider throws exception when only one node down. (Lyle Wang via Ishan Chattopadhyaya)
|
||||
|
||||
Other Changes
|
||||
---------------------
|
||||
* SOLR-14197: SolrResourceLoader: marked many methods as deprecated, and in some cases rerouted exiting logic to avoid
|
||||
|
|
|
@ -63,7 +63,7 @@ public abstract class BaseHttpClusterStateProvider implements ClusterStateProvid
|
|||
this.liveNodes = fetchLiveNodes(initialClient);
|
||||
liveNodesTimestamp = System.nanoTime();
|
||||
break;
|
||||
} catch (IOException e) {
|
||||
} catch (SolrServerException | IOException e) {
|
||||
log.warn("Attempt to fetch cluster state from {} failed.", solrUrl, e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue