mirror of https://github.com/apache/lucene.git
SOLR-4553: for some reason, a node can keep seeing slices inactive or something - we should attempt to proxy inactive slices anyway
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1545027 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
782b2e221c
commit
e50b2b3da4
|
@ -580,7 +580,7 @@ public class SolrDispatchFilter implements Filter
|
||||||
Set<String> collections = clusterState.getCollections();
|
Set<String> collections = clusterState.getCollections();
|
||||||
for (String collection : collections) {
|
for (String collection : collections) {
|
||||||
slices = new ArrayList<Slice>();
|
slices = new ArrayList<Slice>();
|
||||||
slices.addAll(clusterState.getActiveSlices(collection));
|
slices.addAll(clusterState.getSlices(collection));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue