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…
Reference in New Issue