From 70956f6f34886cc48025d22ddce69b75d6b50c27 Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Wed, 6 Feb 2019 13:01:45 -0700 Subject: [PATCH] bad formatted JSON object (#38515) (#38526) It just need to replace the wrong " , " to " : " Backport of #38515 --- 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" } } ]