From 98a37a1e5491241b0f8a449351a78c8e81370c62 Mon Sep 17 00:00:00 2001 From: Martijn Laarman <Mpdreamz@gmail.com> Date: Tue, 26 Apr 2016 11:03:17 +0200 Subject: [PATCH] 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 :) --- .../src/main/resources/rest-api-spec/api/ingest.simulate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest-api-spec/src/main/resources/rest-api-spec/api/ingest.simulate.json b/rest-api-spec/src/main/resources/rest-api-spec/api/ingest.simulate.json index a4904cef80a..d02f97d81dd 100644 --- a/rest-api-spec/src/main/resources/rest-api-spec/api/ingest.simulate.json +++ b/rest-api-spec/src/main/resources/rest-api-spec/api/ingest.simulate.json @@ -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",