class Garage::AuthBackendTimeout

Public Class Methods

new(open_timeout, read_timeout) click to toggle source
Calls superclass method
# File lib/garage/exceptions.rb, line 34
def initialize(open_timeout, read_timeout)
  @status = :internal_server_error
  super("Auth backend timed out: open_timeout=#{open_timeout}, read_timeout=#{read_timeout}")
end