Merge pull request #10441 from colinux/image-processor-sidekiq

Tech: transition ImageProcessorJob to sidekiq
This commit is contained in:
Colin Darie 2024-05-23 06:26:03 +00:00 committed by GitHub
commit b3c2b46bb1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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