mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-25 01:19:02 +00:00
Fixed that the ignore_indices
option isn't set in multi search api. Closes #2380
This commit is contained in:
parent
bd9a5bfa0c
commit
ef25ac2414
@ -63,7 +63,7 @@ public class RestMultiSearchAction extends BaseRestHandler {
|
||||
String[] types = RestActions.splitTypes(request.param("type"));
|
||||
IgnoreIndices ignoreIndices = null;
|
||||
if (request.hasParam("ignore_indices")) {
|
||||
IgnoreIndices.fromString(request.param("ignore_indices"));
|
||||
ignoreIndices = IgnoreIndices.fromString(request.param("ignore_indices"));
|
||||
}
|
||||
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user