move rebase jobs to sidekiq

This commit is contained in:
simon lehericey 2023-12-07 15:47:47 +01:00 committed by mfo
parent e868d62ffd
commit 4f75fbe7ec

View file

@ -9,5 +9,9 @@ if Rails.env.production? && sidekiq_enabled
class VirusScannerJob
self.queue_adapter = :sidekiq
end
class DossierRebaseJob < ApplicationJob
self.queue_adapter = :sidekiq
end
end
end