I've updated ElasticSearch to 2.1 version.
Before of that, I deleted every document in a type using:
curl -XDELETE '<server_node>:<port>/<index>/<type>' -i
curl -XDELETE 'http://ESNode01:9201/living/inputs' -i
From now then, this is the response:
HTTP/1.1 400 Bad Request Content-Type: text/plain; charset=UTF-8
Content-Length: 61
No handler found for uri [/living/inputs] and method [DELETE]
What am I doing wrong?