class FimmedUp::Response::RaiseServerError

Public Instance Methods

on_complete(env) click to toggle source
# File lib/fimmed_up/response/raise_server_error.rb, line 8
def on_complete(env)
  status  = env[:status].to_i
  body    = env[:body]
  headers = env[:response_headers]

  case status
  when 503
    raise FimmedUp::Error::ServiceUnavailable.new "503 No server is available to handle this request.", headers
  end
end