class Sidekiq::RetryExceptions::Server::Middleware

Public Instance Methods

attempt_retry(worker, msg, queue, exception) click to toggle source
Calls superclass method
# File lib/sidekiq/retry_exceptions/server/middleware.rb, line 8
def attempt_retry(worker, msg, queue, exception)
  begin
    super
  rescue Sidekiq::RetryException => exception
  end
end