Sha256: 24ae83b76864b02fb40c3f0010c608b67c718174e7987264ddd57aa3ae618063

Contents?: true

Size: 782 Bytes

Versions: 1

Compression:

Stored size: 782 Bytes

Contents

require 'faraday'

require 'saddle/errors'



module Saddle
  module Middleware

    # Public: Enforces a ruby timeout on the request and throws one consistent
    # exception for all classes of timeout, internal or from faraday.
    # :timeout must be present in the request or client options
    class RubyTimeout < Faraday::Middleware

      def call(env)
        timeout = env[:saddle][:hard_timeout] # nil or 0 means no timeout
        Timeout.timeout(timeout, Saddle::TimeoutError) do
          @app.call(env)
        end
      # It is possible that faraday will catch the timeout first and throw
      # this exception, rethrow as a class derived from standard error.
      rescue Faraday::Error::TimeoutError
        raise Saddle::TimeoutError
      end

    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
saddle-0.1.0 lib/saddle/middleware/ruby_timeout.rb