aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/rescue_job.rb
blob: e42de4876e55e770c2f160934ce43ed835c45b52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class RescueJob < ActiveJob::Base
  class OtherError < StandardError; end

  rescue_from(ArgumentError) do
    Thread.current[:ajbuffer] << "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
      Thread.current[:ajbuffer] << "performed beautifully"
    end
  end
end