21 lines
494 B
Ruby
21 lines
494 B
Ruby
class ApplicationJob < ActiveJob::Base
|
|
include ActiveJob::RetryOnTransientErrors
|
|
|
|
DEFAULT_MAX_ATTEMPTS_JOBS = 25
|
|
|
|
before_perform do |job|
|
|
Rails.logger.info("#{job.class.name} started at #{Time.zone.now}")
|
|
end
|
|
|
|
after_perform do |job|
|
|
Rails.logger.info("#{job.class.name} ended at #{Time.zone.now}")
|
|
end
|
|
|
|
def error(job, exception)
|
|
Sentry.capture_exception(exception)
|
|
end
|
|
|
|
def max_attempts
|
|
ENV.fetch("MAX_ATTEMPTS_JOBS", DEFAULT_MAX_ATTEMPTS_JOBS).to_i
|
|
end
|
|
end
|