remove put method

This commit is contained in:
Areek Zillur 2016-06-06 18:54:20 -04:00
parent 1e329099f9
commit d8d60d294e
1 changed files with 0 additions and 1 deletions

View File

@ -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);
}