Last active
April 18, 2020 06:58
-
-
Save amolpujari/0a4899e7f642b9e6b4cec51f0b6a3840 to your computer and use it in GitHub Desktop.
rails 5 application job
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationJob < ActiveJob::Base | |
include ::PrivateInspector | |
include ::SanitizerHelper | |
# Automatically retry jobs that encountered a deadlock | |
# retry_on ActiveRecord::Deadlocked | |
# Most jobs are safe to ignore if the underlying records are no longer available | |
# discard_on ActiveJob::DeserializationError | |
rescue_from Exception do |e| | |
ExceptionNotifier.notify_exception(e, data: { data: private_inspect }) | |
if Rails.env.development? | |
Rails.logger.error e.message | |
Rails.logger.error e.backtrace.join("\r\n") | |
end | |
end | |
def perform *args | |
options = args.last || {} | |
@start_time = Time.now | |
@result = execute *args | |
@end_time = Time.now | |
@time_taken = "#{TimeDifference.between(@start_time, @end_time).in_ms}ms" | |
ensure | |
unless self.class.do_not_notify_on_finish? | |
notify_finished unless options[:application_job_do_not_notify] | |
end | |
end | |
def notify_finished | |
Notifier.notify_dev "#{self.class.name} finished", private_inspect.merge!({ application_job_do_not_notify: true}) | |
end | |
def self.do_not_notify_on_finish | |
@do_not_notify_on_finish = true | |
end | |
def self.do_not_notify_on_finish? | |
@do_not_notify_on_finish | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment