Added "_shards" and "result" keys to the response.
@@ -302,6 +302,12 @@ curl -XPUT 'localhost:9200/customer/external/1?pretty' -d '
"_type" : "external",
"_id" : "1",
"_version" : 1,
+ "result" : "created",
+ "_shards" : {
+ "total" : 2,
+ "successful" : 1,
+ "failed" : 0
+ },
"created" : true
}
--------------------------------------------------