12 lines
244 B
Ruby
12 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ExceptionNotifierInDelayedJob
|
|
def handle_failed_job(job, error)
|
|
super
|
|
ExceptionNotfier.notify_exception(error)
|
|
end
|
|
end
|
|
|
|
Delayed::Worker.class_eval do
|
|
prepend ExceptionNotifierInDelayedJob
|
|
end
|