mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
11 lines
397 B
Ruby
11 lines
397 B
Ruby
class ApplicationJob < ActiveJob::Base
|
|
# 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
|
|
|
|
# Discard jobs that exceed concurrency limits
|
|
discard_on GoodJob::ActiveJobExtensions::Concurrency::ConcurrencyExceededError
|
|
end
|