From 6b7d40929c6a76639d0e5d009e1bae4c6373534a Mon Sep 17 00:00:00 2001 From: Brandon Wulf Date: Thu, 28 Jul 2016 18:52:53 -0700 Subject: [PATCH] Switch example from inclusion to exclusion. Page is explaining allocation exclusion- example should be about exclusion as well. --- docs/reference/modules/cluster/allocation_filtering.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/modules/cluster/allocation_filtering.asciidoc b/docs/reference/modules/cluster/allocation_filtering.asciidoc index 533a3e83c6c..437f243c018 100644 --- a/docs/reference/modules/cluster/allocation_filtering.asciidoc +++ b/docs/reference/modules/cluster/allocation_filtering.asciidoc @@ -62,7 +62,7 @@ All attribute values can be specified with wildcards, eg: PUT _cluster/settings { "transient": { - "cluster.routing.allocation.include._ip": "192.168.2.*" + "cluster.routing.allocation.exclude._ip": "192.168.2.*" } } ------------------------