Remove trailing / in rest spec for ingest.simulate (#17976)

The url that takes an id has a trailing forward slash, not really an
error but as its the only url in the whole spec that does this it
triggered my OCD :)
This commit is contained in:
Martijn Laarman 2016-04-26 11:03:17 +02:00
parent 166cfcee8a
commit 98a37a1e54

View File

@ -4,7 +4,7 @@
"methods": [ "GET", "POST" ],
"url": {
"path": "/_ingest/pipeline/_simulate",
"paths": [ "/_ingest/pipeline/_simulate", "/_ingest/pipeline/{id}/_simulate/" ],
"paths": [ "/_ingest/pipeline/_simulate", "/_ingest/pipeline/{id}/_simulate" ],
"parts": {
"id": {
"type" : "string",