Fix another simulate example in ingest docs

When simulating an ingest pipeline against an existing pipeline, the
_source field is required to wrap each doc. This commit fixes another
example in the docs that is missing this.
    
Relates #25743, relates e3a0c11239
This commit is contained in:
Glen Smith 2017-07-17 00:17:42 -06:00 committed by Jason Tedor
parent e3a0c11239
commit e9dfb2a215
1 changed files with 2 additions and 2 deletions

View File

@ -205,8 +205,8 @@ POST _ingest/pipeline/_simulate
// pipeline definition here // pipeline definition here
}, },
"docs" : [ "docs" : [
{ /** first document **/ }, { "_source": {/** first document **/} },
{ /** second document **/ }, { "_source": {/** second document **/} },
// ... // ...
] ]
} }