Skip to content

Commit 603cc9c

Browse files
committed
update docs and bunp changelog
1 parent 4e95fe3 commit 603cc9c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Changelog.rst

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Changelog
55

66
6.2.0 (dev)
77
-----------
8+
* ``_routing`` in bulk action has been deprecated in ES. Introduces a breaking change
9+
if you use ``routing`` as a field in your documents.
810

911
6.1.1 (2018-01-05)
1012
------------------

docs/helpers.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ in several formats. The most common one is the same as returned by
2828
'_index': 'index-name',
2929
'_type': 'document',
3030
'_id': 42,
31-
'_parent': 5,
31+
'routing': 5,
3232
'pipeline': 'my-ingest-pipeline',
3333
'_source': {
3434
"title": "Hello World!",
@@ -43,7 +43,7 @@ from the doc and use the rest as the document data:
4343
4444
{
4545
"_id": 42,
46-
"_parent": 5,
46+
"routing": 5,
4747
"title": "Hello World!",
4848
"body": "..."
4949
}

0 commit comments

Comments
 (0)