[DOCS] Fixes breaking changes for low level client (#39930)

This commit is contained in:
Lisa Cawley 2019-03-11 10:38:49 -07:00 committed by GitHub
parent 7c7933b0aa
commit ea16015bc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 9 deletions

View File

@ -2,6 +2,13 @@
[[breaking_70_low_level_restclient_changes]]
=== Low-level REST client changes
[float]
==== Support for `maxRetryTimeout` removed from RestClient
`RestClient` and `RestClientBuilder` no longer support the `maxRetryTimeout`
setting. The setting was removed as its counting mechanism was not accurate
and caused issues while adding little value.
[float]
==== Deprecated flavors of performRequest have been removed

View File

@ -21,12 +21,3 @@ The Cluster Health API used to default to `shards` level to ease migration
from transport client that doesn't support the `level` parameter and always
returns information including indices and shards details. The level default
value has been aligned with the Elasticsearch default level: `cluster`.
=== Low-level REST client changes
[float]
==== Support for `maxRetryTimeout` removed from RestClient
`RestClient` and `RestClientBuilder` no longer support the `maxRetryTimeout`
setting. The setting was removed as its counting mechanism was not accurate
and caused issues while adding little value.