Browse Source

[DOCS] Remove `_all` examples from 'Fix common cluster issues' (#73217)

We plan to deprecate the `_all` wildcard pattern. This removes several
`_all` examples from the 'Fix common cluster issues' guide.
James Rodewig 4 years ago
parent
commit
c9a09e33e5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/reference/how-to/fix-common-cluster-issues.asciidoc

+ 3 - 3
docs/reference/how-to/fix-common-cluster-issues.asciidoc

@@ -95,7 +95,7 @@ This may disrupt any in-flight searches that use fielddata.
 
 [source,console]
 ----
-POST _all/_cache/clear?fielddata=true
+POST _cache/clear?fielddata=true
 ----
 // TEST[s/^/PUT my-index\n/]
 
@@ -162,7 +162,7 @@ setting.
 
 [source,console]
 ----
-PUT _all/_settings
+PUT _settings
 {
   "index.max_result_window": 5000
 }
@@ -331,7 +331,7 @@ primary.
 
 [source,console]
 ----
-PUT _all/_settings
+PUT _settings
 {
   "index.number_of_replicas": 1
 }