From fa0b82ffb4814ea73f42069bf8aa358200c6428d Mon Sep 17 00:00:00 2001 From: Hossein Dehghan Date: Tue, 9 Jun 2020 16:29:33 +0430 Subject: [PATCH] [Docs] Fix missing closing bracket for watcher webhook.asciidoc (#57803) --- x-pack/docs/en/watcher/actions/webhook.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/docs/en/watcher/actions/webhook.asciidoc b/x-pack/docs/en/watcher/actions/webhook.asciidoc index e423aa56fd22c..5cac802fd3b0a 100644 --- a/x-pack/docs/en/watcher/actions/webhook.asciidoc +++ b/x-pack/docs/en/watcher/actions/webhook.asciidoc @@ -24,7 +24,7 @@ The following snippet shows a simple webhook action definition: "method" : "POST", <4> "host" : "mylisteningserver", <5> "port" : 9200, <6> - "path": ":/{{ctx.watch_id}", <7> + "path": ":/{{ctx.watch_id}}", <7> "body" : "{{ctx.watch_id}}:{{ctx.payload.hits.total.value}}" <8> } }