Browse Source

Merge pull request #13678 from elastic/fix/cluster-health-api

In cluster health REST spec, {index} can be one or many indices and should be typed to list.
Martijn Laarman 10 years ago
parent
commit
a0fa83e3df

+ 1 - 1
rest-api-spec/src/main/resources/rest-api-spec/api/cluster.health.json

@@ -7,7 +7,7 @@
       "paths": ["/_cluster/health", "/_cluster/health/{index}"],
       "parts": {
         "index": {
-          "type" : "string",
+          "type" : "list",
           "description" : "Limit the information returned to a specific index"
         }
       },