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:
Erik Hatcher 2015-08-03 17:33:00 +00:00
parent 2255cd3e54
commit 5b21274051
1 changed files with 1 additions and 1 deletions

View File

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