Sha256: 467a4ca41fb89aa5e479acd9fe7394aa83703be8b14d7b1634a823b45aa5e9d0

Contents?: true

Size: 343 Bytes

Versions: 3

Compression:

Stored size: 343 Bytes

Contents

# frozen_string_literal: true

require_relative "../request"

module Freno
  class Client
    module Requests
      class ReplicationDelay < Check
        protected

        def process_response(*)
          response = super
          response.body["Value"]
        end

        def verb
          :get
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
freno-client-0.9.0 lib/freno/client/requests/replication_delay.rb
freno-client-0.8.3 lib/freno/client/requests/replication_delay.rb
freno-client-0.8.2 lib/freno/client/requests/replication_delay.rb