From 6fed08214831ef389e21e80603bff699ce1f5eb6 Mon Sep 17 00:00:00 2001 From: Jay Greenberg Date: Sat, 31 Aug 2019 12:14:34 -0400 Subject: [PATCH] Clarify default behavior of auto_create_index (#46134) Be specific about the default behaviour of `action.auto_create_index` when a list is given. --- docs/reference/docs/index_.asciidoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/reference/docs/index_.asciidoc b/docs/reference/docs/index_.asciidoc index 4aaa22fbe23..ab1da88da6a 100644 --- a/docs/reference/docs/index_.asciidoc +++ b/docs/reference/docs/index_.asciidoc @@ -138,7 +138,8 @@ automatically. You can modify this setting to explicitly allow or block automatic creation of indices that match specified patterns, or set it to `false` to disable automatic index creation entirely. Specify a comma-separated list of patterns you want to allow, or prefix each pattern with -`+` or `-` to indicate whether it should be allowed or blocked. +`+` or `-` to indicate whether it should be allowed or blocked. When a list is +specified, the default behaviour is to disallow. [source,js] --------------------------------------------------