From bb4f11f817a6538ee0456f6498addda491e407fe Mon Sep 17 00:00:00 2001 From: Guilherme Ferreira Date: Wed, 6 Feb 2019 17:48:19 +0100 Subject: [PATCH] bad formatted JSON object (#38515) It just need to replace the wrong " , " to " : " --- docs/reference/ingest/processors/foreach.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/ingest/processors/foreach.asciidoc b/docs/reference/ingest/processors/foreach.asciidoc index 3a341f60470bb..69bf2d85f0d8e 100644 --- a/docs/reference/ingest/processors/foreach.asciidoc +++ b/docs/reference/ingest/processors/foreach.asciidoc @@ -141,8 +141,8 @@ block to send the document to the 'failure_index' index for later inspection: "on_failure" : [ { "set" : { - "field", "_index", - "value", "failure_index" + "field": "_index", + "value": "failure_index" } } ]