From 667309e6a6f31fe1c701e2a6df52a7901c47a37b Mon Sep 17 00:00:00 2001 From: Russ Cam Date: Tue, 4 Aug 2020 10:29:44 +1000 Subject: [PATCH] [DOCS] Fix list dangling indices documentation (#60099) This commit fixes the list dangling indices response. The dangling_indices array is an array of objects that represent aggregated dangling index information (cherry picked from commit 24c72d4e71c95f2d7690090933e0657152f6af9b) --- docs/reference/indices/dangling-indices-list.asciidoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/reference/indices/dangling-indices-list.asciidoc b/docs/reference/indices/dangling-indices-list.asciidoc index a9273730e5f..863a4d8ac7f 100644 --- a/docs/reference/indices/dangling-indices-list.asciidoc +++ b/docs/reference/indices/dangling-indices-list.asciidoc @@ -38,12 +38,14 @@ The API returns the following response: -------------------------------------------------- { "dangling_indices": [ + { "index_name": "my-index-000001", "index_uuid": "zmM4e0JtBkeUjiHD-MihPQ", "creation_date_millis": 1589414451372, "node_ids": [ "pL47UN3dAb2d5RCWP6lQ3e" ] + } ] } --------------------------------------------------