10 lines
224 B
Ruby
10 lines
224 B
Ruby
# Concern that sets various Sidekiq settings for workers executed using a
|
|
# cronjob.
|
|
module CronjobQueue
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
queue_namespace :cronjob
|
|
sidekiq_options retry: false
|
|
end
|
|
end
|