mirror of https://github.com/apache/lucene.git
SOLR-1935 BaseResponseWriter neglects to add SolrDocument in DocList when isStreamingDocs=false ... no CHANGES.txt entry because this is a bug fix for unreleased code
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@950830 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2cf56fcdca
commit
0c2228e0bf
|
@ -124,6 +124,7 @@ public abstract class BaseResponseWriter {
|
|||
if (idxInfo.includeScore && docList.hasScores()) {
|
||||
sdoc.addField(SCORE_FIELD, iterator.score());
|
||||
}
|
||||
list.add(sdoc);
|
||||
}
|
||||
responseWriter.writeAllDocs(info, list);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue