Sidekiq documentation says 'Sidekiq is not designed to work well with dozens of queues.'. Having the amount of queues we have at the moment brings no anyway. Closes #5571
9 lines
136 B
Ruby
9 lines
136 B
Ruby
module Workers
|
|
class RecurringPodCheck < Base
|
|
sidekiq_options queue: :low
|
|
|
|
def perform
|
|
Pod.check_all!
|
|
end
|
|
end
|
|
end
|