lib/elasticsearch/api/actions/indices/unfreeze.rb in elasticsearch-api-8.0.1 vs lib/elasticsearch/api/actions/indices/unfreeze.rb in elasticsearch-api-8.1.0

- old
+ new

@@ -33,18 +33,19 @@ # *Deprecation notice*: # Frozen indices are deprecated because they provide no benefit given improvements in heap memory utilization. They will be removed in a future release. # Deprecated since version 7.14.0 # # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/current/unfreeze-index-api.html + # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.1/unfreeze-index-api.html # def unfreeze(arguments = {}) raise ArgumentError, "Required argument 'index' missing" unless arguments[:index] - arguments = arguments.clone headers = arguments.delete(:headers) || {} - body = nil + body = nil + + arguments = arguments.clone _index = arguments.delete(:index) method = Elasticsearch::API::HTTP_POST path = "#{Utils.__listify(_index)}/_unfreeze"