diff --git a/config/initializers/transition_to_sidekiq.rb b/config/initializers/transition_to_sidekiq.rb index a4c8e961a..3b5360b6a 100644 --- a/config/initializers/transition_to_sidekiq.rb +++ b/config/initializers/transition_to_sidekiq.rb @@ -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