Open
Description
What is the bug?
Plugin uses PUT to start replication, but POST to pause, resume and stop. Seems inconsistent.
POST /_plugins/_replication/{index}/_pause
POST /_plugins/_replication/{index}/_resume
PUT /_plugins/_replication/{index}/_start
POST /_plugins/_replication/{index}/_stop
What is the expected behavior?
All these APIs should be either PUT or POST. Feels like POST.