lib/elasticsearch/api/actions/cat/plugins.rb in elasticsearch-api-8.0.0 vs lib/elasticsearch/api/actions/cat/plugins.rb in elasticsearch-api-8.0.1
- old
+ new
@@ -32,14 +32,13 @@
# @option arguments [Hash] :headers Custom HTTP headers
#
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-plugins.html
#
def plugins(arguments = {})
+ arguments = arguments.clone
headers = arguments.delete(:headers) || {}
- body = nil
-
- arguments = arguments.clone
+ body = nil
method = Elasticsearch::API::HTTP_GET
path = "_cat/plugins"
params = Utils.process_params(arguments)