The response format is displaying elements "found" and "source" in the same lines and they should appear on their own separate lines. Closes #18374
@@ -326,7 +326,8 @@ curl -XGET 'localhost:9200/customer/external/1?pretty'
"_type" : "external",
"_id" : "1",
"_version" : 1,
- "found" : true, "_source" : { "name": "John Doe" }
+ "found" : true,
+ "_source" : { "name": "John Doe" }
}
--------------------------------------------------