Fixed that the `ignore_indices` option isn't set in multi search api. Closes #2380

This commit is contained in:
Martijn van Groningen 2012-11-02 10:58:02 +01:00
parent bd9a5bfa0c
commit ef25ac2414
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class RestMultiSearchAction extends BaseRestHandler {
String[] types = RestActions.splitTypes(request.param("type")); String[] types = RestActions.splitTypes(request.param("type"));
IgnoreIndices ignoreIndices = null; IgnoreIndices ignoreIndices = null;
if (request.hasParam("ignore_indices")) { if (request.hasParam("ignore_indices")) {
IgnoreIndices.fromString(request.param("ignore_indices")); ignoreIndices = IgnoreIndices.fromString(request.param("ignore_indices"));
} }
try { try {