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:
Chris M. Hostetter 2010-06-02 23:59:34 +00:00
parent 2cf56fcdca
commit 0c2228e0bf
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}