Browse Source

Switch example from inclusion to exclusion.

Page is explaining allocation exclusion- example should be about exclusion as well.
Brandon Wulf 9 years ago
parent
commit
6b7d40929c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/modules/cluster/allocation_filtering.asciidoc

+ 1 - 1
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.*"
   }
 }
 ------------------------