mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-24 17:09:48 +00:00
search missing from stats when using clear and search params, closes #1516.
This commit is contained in:
parent
682be7c63a
commit
032e215f25
@ -94,6 +94,7 @@ public class RestIndicesStatsAction extends BaseRestHandler {
|
||||
indicesStatsRequest.docs(request.paramAsBoolean("docs", indicesStatsRequest.docs()));
|
||||
indicesStatsRequest.store(request.paramAsBoolean("store", indicesStatsRequest.store()));
|
||||
indicesStatsRequest.indexing(request.paramAsBoolean("indexing", indicesStatsRequest.indexing()));
|
||||
indicesStatsRequest.search(request.paramAsBoolean("search", indicesStatsRequest.search()));
|
||||
indicesStatsRequest.get(request.paramAsBoolean("get", indicesStatsRequest.get()));
|
||||
indicesStatsRequest.merge(request.paramAsBoolean("merge", indicesStatsRequest.merge()));
|
||||
indicesStatsRequest.refresh(request.paramAsBoolean("refresh", indicesStatsRequest.refresh()));
|
||||
|
Loading…
x
Reference in New Issue
Block a user