From d8d60d294ea89a4e94749a86b394257bb431ee84 Mon Sep 17 00:00:00 2001 From: Areek Zillur Date: Mon, 6 Jun 2016 18:54:20 -0400 Subject: [PATCH] remove put method --- .../rest/action/admin/indices/RestRolloverIndexAction.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/main/java/org/elasticsearch/rest/action/admin/indices/RestRolloverIndexAction.java b/core/src/main/java/org/elasticsearch/rest/action/admin/indices/RestRolloverIndexAction.java index b56b04166fb..963080c3122 100644 --- a/core/src/main/java/org/elasticsearch/rest/action/admin/indices/RestRolloverIndexAction.java +++ b/core/src/main/java/org/elasticsearch/rest/action/admin/indices/RestRolloverIndexAction.java @@ -37,7 +37,6 @@ public class RestRolloverIndexAction extends BaseRestHandler { @Inject public RestRolloverIndexAction(Settings settings, RestController controller, Client client) { super(settings, client); - controller.registerHandler(RestRequest.Method.PUT, "/{alias}/_rollover", this); controller.registerHandler(RestRequest.Method.POST, "/{alias}/_rollover", this); controller.registerHandler(RestRequest.Method.GET, "/{alias}/_rollover", this); }