Commit 4fdee1e0 authored by Valery Sizov's avatar Valery Sizov

fix doc lint

parent 5854c47c
...@@ -166,7 +166,7 @@ time drop. ...@@ -166,7 +166,7 @@ time drop.
1. Disable refreshing: 1. Disable refreshing:
```bash ```bash
curl -XPUT localhost:9200/_settings -d '{ curl --request PUT localhost:9200/_settings --data '{
"index" : { "index" : {
"refresh_interval" : "-1" "refresh_interval" : "-1"
} }' } }'
...@@ -175,7 +175,7 @@ time drop. ...@@ -175,7 +175,7 @@ time drop.
1. (optional) You may want to disable replication and enable it after indexing: 1. (optional) You may want to disable replication and enable it after indexing:
```bash ```bash
curl -XPUT localhost:9200/_settings -d '{ curl --request PUT localhost:9200/_settings --data '{
"index" : { "index" : {
"number_of_replicas" : 0 "number_of_replicas" : 0
} }' } }'
...@@ -187,7 +187,7 @@ time drop. ...@@ -187,7 +187,7 @@ time drop.
the indexing is done and set it to its default value, which is 1: the indexing is done and set it to its default value, which is 1:
```bash ```bash
curl -XPUT localhost:9200/_settings -d '{ curl --request PUT localhost:9200/_settings --data '{
"index" : { "index" : {
"number_of_replicas" : 1 "number_of_replicas" : 1
} }' } }'
...@@ -196,7 +196,7 @@ time drop. ...@@ -196,7 +196,7 @@ time drop.
1. Enable refreshing again (after indexing): 1. Enable refreshing again (after indexing):
```bash ```bash
curl -XPUT localhost:9200/_settings -d '{ curl --request PUT localhost:9200/_settings --data '{
"index" : { "index" : {
"refresh_interval" : "1s" "refresh_interval" : "1s"
} }' } }'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment