mirror of https://github.com/apache/lucene.git
SOLR-7799: fix mistake of docs count for terms being inside the new if condition inadvertently
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1693943 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2255cd3e54
commit
5b21274051
|
@ -390,8 +390,8 @@ public class LukeRequestHandler extends RequestHandlerBase
|
|||
log.warn("error reading field: " + fieldName);
|
||||
}
|
||||
}
|
||||
fieldMap.add("docs", terms.getDocCount());
|
||||
}
|
||||
fieldMap.add("docs", terms.getDocCount());
|
||||
}
|
||||
if (fields != null && (fields.contains(fieldName) || fields.contains("*"))) {
|
||||
getDetailedFieldInfo(req, fieldName, fieldMap);
|
||||
|
|
Loading…
Reference in New Issue