lib/elasticsearch/api/actions/cross_cluster_replication/stats.rb in elasticsearch-api-8.12.2 vs lib/elasticsearch/api/actions/cross_cluster_replication/stats.rb in elasticsearch-api-8.13.0

- old
+ new

@@ -24,21 +24,21 @@ module Actions # Gets all stats related to cross-cluster replication. # # @option arguments [Hash] :headers Custom HTTP headers # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.12/ccr-get-stats.html + # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.13/ccr-get-stats.html # def stats(arguments = {}) - request_opts = { endpoint: arguments[:endpoint] || "ccr.stats" } + request_opts = { endpoint: arguments[:endpoint] || 'ccr.stats' } arguments = arguments.clone headers = arguments.delete(:headers) || {} body = nil method = Elasticsearch::API::HTTP_GET - path = "_ccr/stats" + path = '_ccr/stats' params = {} Elasticsearch::API::Response.new( perform_request(method, path, params, body, headers, request_opts) )