aboutsummaryrefslogblamecommitdiffstats
path: root/activejob/test/jobs/rescue_job.rb
blob: 77084160d978dbaa26bdd598315e5bc399825f3c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                 


                                       
                                               




                               




                                          
        
                                            


       
class RescueJob < ActiveJob::Base
  class OtherError < StandardError; end

  rescue_from(ArgumentError) do
    JobBuffer.add('rescued from ArgumentError')
    arguments[0] = "DIFFERENT!"
    retry_now
  end

  def perform(person = "david")
    case person
    when "david"
      raise ArgumentError, "Hair too good"
    when "other"
      raise OtherError
    else
      JobBuffer.add('performed beautifully')
    end
  end
end