allow to set specific routing index_routing and search_routing names as well

This commit is contained in:
kimchy 2011-07-18 22:15:22 +03:00
parent 04086985f4
commit 10660d390d
1 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ import java.io.IOException;
import java.util.Map;
import static org.elasticsearch.cluster.metadata.AliasAction.*;
import static org.elasticsearch.common.unit.TimeValue.timeValueSeconds;
import static org.elasticsearch.common.unit.TimeValue.*;
import static org.elasticsearch.rest.RestRequest.Method.*;
import static org.elasticsearch.rest.RestStatus.*;
import static org.elasticsearch.rest.action.support.RestXContentBuilder.*;
@ -106,10 +106,10 @@ public class RestIndicesAliasesAction extends BaseRestHandler {
} else if ("routing".equals(currentFieldName)) {
routing = parser.textOrNull();
routingSet = true;
} else if ("indexRouting".equals(currentFieldName) || "index-routing".equals(currentFieldName)) {
} else if ("indexRouting".equals(currentFieldName) || "index-routing".equals(currentFieldName) || "index_routing".equals(currentFieldName)) {
indexRouting = parser.textOrNull();
indexRoutingSet = true;
} else if ("searchRouting".equals(currentFieldName) || "search-routing".equals(currentFieldName)) {
} else if ("searchRouting".equals(currentFieldName) || "search-routing".equals(currentFieldName) || "search_routing".equals(currentFieldName)) {
searchRouting = parser.textOrNull();
searchRoutingSet = true;
}