correct field name for routing (#758)

`_routing` is correct field name for `routing` in every bulk item action
This commit is contained in:
Sumit Kumar
2018-03-30 13:41:53 -06:00
committed by Nick Lang
parent a9232fced7
commit 52c387abf7
+2 -2
View File
@@ -28,7 +28,7 @@ in several formats. The most common one is the same as returned by
'_index': 'index-name',
'_type': 'document',
'_id': 42,
'routing': 5,
'_routing': 5,
'pipeline': 'my-ingest-pipeline',
'_source': {
"title": "Hello World!",
@@ -43,7 +43,7 @@ from the doc and use the rest as the document data:
{
"_id": 42,
"routing": 5,
"_routing": 5,
"title": "Hello World!",
"body": "..."
}