From 2c6bd978d80eb903718de561a64bed147f41ef9a 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 e423aa56fd2..5cac802fd3b 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> } }