From 7037670aeb3625a26ac76c4737012a04dee16aeb Mon Sep 17 00:00:00 2001 From: Spencer Date: Tue, 5 Apr 2016 09:19:21 -0700 Subject: [PATCH] [REST API] set correct default value The correct default value for the `expand_wildcards` parameter to `indices.get_alias` is `all` as of all https://github.com/elastic/elasticsearch/commit/f4d75f0212dffb829aaca3622d3ce1db016d0981 --- .../src/main/resources/rest-api-spec/api/indices.get_alias.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest-api-spec/src/main/resources/rest-api-spec/api/indices.get_alias.json b/rest-api-spec/src/main/resources/rest-api-spec/api/indices.get_alias.json index 228e0199af0..b68d7c527fc 100644 --- a/rest-api-spec/src/main/resources/rest-api-spec/api/indices.get_alias.json +++ b/rest-api-spec/src/main/resources/rest-api-spec/api/indices.get_alias.json @@ -27,7 +27,7 @@ "expand_wildcards": { "type" : "enum", "options" : ["open","closed","none","all"], - "default" : "open", + "default" : "all", "description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both." }, "local": {