From e7c7ed6493c1db42603729e4cbcd81762fc151e0 Mon Sep 17 00:00:00 2001 From: James Rodewig Date: Mon, 20 Jul 2020 10:08:51 -0400 Subject: [PATCH] [DOCS] Fix `requests_per_second` reindex param (#59871) (#59876) Corrects the `requests_per_second` query parameter used in the reindex, delete by query, and update by query API docs. The parameter defaults to `-1` (no throttle). `0` is not an allowed value. --- docs/reference/rest-api/common-parms.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/rest-api/common-parms.asciidoc b/docs/reference/rest-api/common-parms.asciidoc index d3c62456b1522..9bcac698629e0 100644 --- a/docs/reference/rest-api/common-parms.asciidoc +++ b/docs/reference/rest-api/common-parms.asciidoc @@ -761,7 +761,7 @@ end::request_cache[] tag::requests_per_second[] `requests_per_second`:: (Optional, integer) The throttle for this request in sub-requests per second. --1 means no throttle. Defaults to 0. +Defaults to `-1` (no throttle). end::requests_per_second[] tag::routing[]