Fix docs that uses += to add an element in a list even though painless does not accept it.

This commit is contained in:
Jim Ferenczi 2016-08-29 16:00:11 +02:00
parent b36fbc4452
commit dc663a432b
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ will still add it, since its a list):
--------------------------------------------------
curl -XPOST 'localhost:9200/test/type1/1/_update' -d '{
"script" : {
"inline": "ctx._source.tags += params.tag",
"inline": "ctx._source.tags.add(params.tag)",
"lang": "painless",
"params" : {
"tag" : "blue"