bde6547bb6
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
28 lines
673 B
Ruby
28 lines
673 B
Ruby
require_relative "../support/job_buffer"
|
|
|
|
class RescueJob < ActiveJob::Base
|
|
class OtherError < StandardError; end
|
|
|
|
rescue_from(ArgumentError) do
|
|
JobBuffer.add("rescued from ArgumentError")
|
|
arguments[0] = "DIFFERENT!"
|
|
retry_job
|
|
end
|
|
|
|
rescue_from(ActiveJob::DeserializationError) do |e|
|
|
JobBuffer.add("rescued from DeserializationError")
|
|
JobBuffer.add("DeserializationError original exception was #{e.cause.class.name}")
|
|
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
|