chore(sidekiq): transition ImageProcessorJob to sidekiq

This commit is contained in:
Colin Darie 2024-05-22 16:43:07 +02:00
parent 958215f0ea
commit 08a25e60b4
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4

View file

@ -91,5 +91,9 @@ if Rails.env.production? && SIDEKIQ_ENABLED
class SendClosingNotificationJob < ApplicationJob
self.queue_adapter = :sidekiq
end
class ImageProcessorJob < ApplicationJob
self.queue_adapter = :sidekiq
end
end
end