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
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module Actions
# @option arguments [String, Array] :index The index or data stream name (*Required*)
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/docs/api/doc/elasticsearch/v9/group/endpoint-migration
# @see https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-cancel-migrate-reindex
#
def cancel_migrate_reindex(arguments = {})
request_opts = { endpoint: arguments[:endpoint] || 'indices.cancel_migrate_reindex' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module Actions
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body create_from
#
# @see https://www.elastic.co/docs/api/doc/elasticsearch/v9/group/endpoint-migration
# @see https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-create-from
#
def create_from(arguments = {})
request_opts = { endpoint: arguments[:endpoint] || 'indices.create_from' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module Actions
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body reindex
#
# @see https://www.elastic.co/docs/api/doc/elasticsearch/v9/group/endpoint-migration
# @see https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-migrate-reindex
#
def migrate_reindex(arguments = {})
request_opts = { endpoint: arguments[:endpoint] || 'indices.migrate_reindex' }
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch-api/lib/elasticsearch/api/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
module Elasticsearch
module API
VERSION = '9.0.0'.freeze
ES_SPECIFICATION_COMMIT = 'c02d8eb89a4efb3e719bd783715e2bf312479af8'.freeze
ES_SPECIFICATION_COMMIT = '52c473efb1fb5320a5bac12572d0b285882862fb'.freeze
end
end
2 changes: 1 addition & 1 deletion elasticsearch-api/spec/yaml-test-runner/run.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def serverless?
if serverless?
options.merge!(
{
retry_on_status: [409],
retry_on_status: [409, 400],
retry_on_failure: 10,
delay_on_retry: 60_000,
request_timeout: 120
Expand Down