Skip to content
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
1 change: 0 additions & 1 deletion elasticsearch/_async/client/indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,6 @@ async def disk_usage(
@_rewrite_parameters(
body_name="config",
)
@_availability_warning(Stability.EXPERIMENTAL)
async def downsample(
self,
*,
Expand Down
7 changes: 4 additions & 3 deletions elasticsearch/_async/client/shutdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,10 @@ async def put_node(
:param allocation_delay: Only valid if type is restart. Controls how long Elasticsearch
will wait for the node to restart and join the cluster before reassigning
its shards to other nodes. This works the same as delaying allocation with
the index.unassigned.node_left.delayed_timeout setting. If you specify both
a restart allocation delay and an index-level allocation delay, the longer
of the two is used.
the index.unassigned.node_left.delayed_timeout setting. If you don't specify
a restart allocation delay, a default value of 5 minutes will be used. If
both a restart allocation delay and an index-level allocation delay are configured,
the longer of the two is used.
:param master_timeout: The period to wait for a connection to the master node.
If no response is received before the timeout expires, the request fails
and returns an error.
Expand Down
1 change: 0 additions & 1 deletion elasticsearch/_sync/client/indices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,6 @@ def disk_usage(
@_rewrite_parameters(
body_name="config",
)
@_availability_warning(Stability.EXPERIMENTAL)
def downsample(
self,
*,
Expand Down
7 changes: 4 additions & 3 deletions elasticsearch/_sync/client/shutdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,10 @@ def put_node(
:param allocation_delay: Only valid if type is restart. Controls how long Elasticsearch
will wait for the node to restart and join the cluster before reassigning
its shards to other nodes. This works the same as delaying allocation with
the index.unassigned.node_left.delayed_timeout setting. If you specify both
a restart allocation delay and an index-level allocation delay, the longer
of the two is used.
the index.unassigned.node_left.delayed_timeout setting. If you don't specify
a restart allocation delay, a default value of 5 minutes will be used. If
both a restart allocation delay and an index-level allocation delay are configured,
the longer of the two is used.
:param master_timeout: The period to wait for a connection to the master node.
If no response is received before the timeout expires, the request fails
and returns an error.
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.

__versionstr__ = "8.19.3"
__es_specification_commit__ = "51372ad653b217d6f4066f4ed8a185de99e006e3"
__es_specification_commit__ = "cf828b92d98750be126aec2bf8614e9bb3bef440"
Loading