lib/slack/web/faraday/response/wrap_error.rb in slack-ruby-client-1.0.0 vs lib/slack/web/faraday/response/wrap_error.rb in slack-ruby-client-1.1.0
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
module Slack
module Web
module Faraday
module Response
- class WrapError < ::Faraday::Response::Middleware
+ class WrapError < ::Faraday::Middleware
UNAVAILABLE_ERROR_STATUSES = (500..599).freeze
def on_complete(env)
return unless UNAVAILABLE_ERROR_STATUSES.cover?(env.status)