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:
Mark Robert Miller 2013-11-24 18:45:17 +00:00
parent 782b2e221c
commit e50b2b3da4
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ public class SolrDispatchFilter implements Filter
Set<String> collections = clusterState.getCollections();
for (String collection : collections) {
slices = new ArrayList<Slice>();
slices.addAll(clusterState.getActiveSlices(collection));
slices.addAll(clusterState.getSlices(collection));
}
}