lib/elasticsearch/api/actions/indices/put_settings.rb in elasticsearch-api-8.0.1 vs lib/elasticsearch/api/actions/indices/put_settings.rb in elasticsearch-api-8.1.0
- old
+ new
@@ -30,18 +30,19 @@
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, hidden, none, all)
# @option arguments [Boolean] :flat_settings Return settings in flat format (default: false)
# @option arguments [Hash] :headers Custom HTTP headers
# @option arguments [Hash] :body The index settings to be updated (*Required*)
#
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-update-settings.html
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.1/indices-update-settings.html
#
def put_settings(arguments = {})
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
- arguments = arguments.clone
headers = arguments.delete(:headers) || {}
- body = arguments.delete(:body)
+ body = arguments.delete(:body)
+
+ arguments = arguments.clone
_index = arguments.delete(:index)
method = Elasticsearch::API::HTTP_PUT
path = if _index