chore(tasks): run tasks in sidekiq

This commit is contained in:
Paul Chavard 2024-03-20 09:00:05 +01:00
parent 7178660acd
commit f15cba8f35

View file

@ -17,5 +17,9 @@ if Rails.env.production? && sidekiq_enabled
class ProcedureExternalURLCheckJob < ApplicationJob
self.queue_adapter = :sidekiq
end
class MaintenanceTasks::TaskJob
self.queue_adapter = :sidekiq
end
end
end