chore(sidekiq): move more jobs to sidekiq
This commit is contained in:
parent
51f9fa2f90
commit
b6e1e1a04b
1 changed files with 28 additions and 0 deletions
|
@ -63,5 +63,33 @@ if Rails.env.production? && SIDEKIQ_ENABLED
|
||||||
class DossierOperationLogMoveToColdStorageBatchJob < ApplicationJob
|
class DossierOperationLogMoveToColdStorageBatchJob < ApplicationJob
|
||||||
self.queue_adapter = :sidekiq
|
self.queue_adapter = :sidekiq
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class BatchOperationEnqueueAllJob < ApplicationJob
|
||||||
|
self.queue_adapter = :sidekiq
|
||||||
|
end
|
||||||
|
|
||||||
|
class BatchOperationProcessOneJob < ApplicationJob
|
||||||
|
self.queue_adapter = :sidekiq
|
||||||
|
end
|
||||||
|
|
||||||
|
class TitreIdentiteWatermarkJob < ApplicationJob
|
||||||
|
self.queue_adapter = :sidekiq
|
||||||
|
end
|
||||||
|
|
||||||
|
class AdminUpdateDefaultZonesJob < ApplicationJob
|
||||||
|
self.queue_adapter = :sidekiq
|
||||||
|
end
|
||||||
|
|
||||||
|
class ProcessStalledDeclarativeDossierJob < ApplicationJob
|
||||||
|
self.queue_adapter = :sidekiq
|
||||||
|
end
|
||||||
|
|
||||||
|
class ResetExpiringDossiersJob < ApplicationJob
|
||||||
|
self.queue_adapter = :sidekiq
|
||||||
|
end
|
||||||
|
|
||||||
|
class SendClosingNotificationJob < ApplicationJob
|
||||||
|
self.queue_adapter = :sidekiq
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue