Fixed bug in new version of opensearch

This commit is contained in:
frikky
2021-06-08 12:19:18 +02:00
parent 60eeebb210
commit 2e2769dabc
5 changed files with 20 additions and 20 deletions
@@ -1,11 +1,11 @@
curl -XPUT http://localhost:9200/_cluster/settings -H "Content-Type:application/json" -d \
curl -XPUT -u admin:admin https://localhost:9200/_cluster/settings -H "Content-Type:application/json" -k -d \
'{
"transient": {
"cluster.routing.allocation.disk.threshold_enabled": false
}
}'
curl -XPUT http://localhost:9200/_all/_settings -H "Content-Type: application/json" -d \
curl -XPUT -u admin:admin https://localhost:9200/_all/_settings -H "Content-Type: application/json" -k -d \
'{
"index.blocks.read_only_allow_delete": null
}'