]> git.openstreetmap.org Git - rails.git/blob - app/jobs/application_job.rb
Add frozen_string_literal comments to ruby files
[rails.git] / app / jobs / application_job.rb
1 # frozen_string_literal: true
2
3 class ApplicationJob < ActiveJob::Base
4   # Automatically retry jobs that encountered a deadlock
5   # retry_on ActiveRecord::Deadlocked
6
7   # Most jobs are safe to ignore if the underlying records are no longer available
8   # discard_on ActiveJob::DeserializationError
9 end