Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix delete vs update by query typo, make consistent (docs) #29318

Merged
merged 1 commit into from
Apr 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"type" : "enum",
"options": ["abort", "proceed"],
"default": "abort",
"description" : "What to do when the delete-by-query hits version conflicts?"
"description" : "What to do when the delete by query hits version conflicts?"
},
"expand_wildcards": {
"type" : "enum",
Expand Down Expand Up @@ -142,12 +142,12 @@
"scroll_size": {
"type": "number",
"defaut_value": 100,
"description": "Size on the scroll request powering the update_by_query"
"description": "Size on the scroll request powering the delete by query"
},
"wait_for_completion": {
"type" : "boolean",
"default": true,
"description" : "Should the request should block until the delete-by-query is complete."
"description" : "Should the request should block until the delete by query is complete."
},
"requests_per_second": {
"type": "number",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
"scroll_size": {
"type": "number",
"defaut_value": 100,
"description": "Size on the scroll request powering the update_by_query"
"description": "Size on the scroll request powering the update by query"
},
"wait_for_completion": {
"type" : "boolean",
Expand Down