chore(sidekiq): concise transition and avoid typos by not (re)opening classes
This commit is contained in:
parent
069cb04e17
commit
ae5937b22a
1 changed files with 27 additions and 94 deletions
|
@ -1,99 +1,32 @@
|
|||
if Rails.env.production? && SIDEKIQ_ENABLED
|
||||
ActiveSupport.on_load(:after_initialize) do
|
||||
class ActiveStorage::PurgeJob < ActiveStorage::BaseJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class ActiveStorage::AnalyzeJob < ActiveStorage::BaseJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class VirusScannerJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class DossierRebaseJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class ProcedureExternalURLCheckJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class MaintenanceTasks::TaskJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class PriorizedMailDeliveryJob < ActionMailer::MailDeliveryJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class ProcedureSVASVRProcessDossierJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class WebHookJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class DestroyRecordLaterJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class ChampFetchExternalDataJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class DossierIndexSearchTermsJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class Migrations::BackfillStableIdJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class Cron::CronJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class APIEntreprise::Job < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
end
|
||||
|
||||
class DossierOperationLogMoveToColdStorageBatchJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
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
|
||||
|
||||
class ImageProcessorJob < ApplicationJob
|
||||
self.queue_adapter = :sidekiq
|
||||
[
|
||||
ActiveStorage::AnalyzeJob,
|
||||
ActiveStorage::PurgeJob,
|
||||
AdminUpdateDefaultZonesJob,
|
||||
APIEntreprise::Job,
|
||||
AdminUpdateDefaultZonesJob,
|
||||
BatchOperationEnqueueAllJob,
|
||||
BatchOperationProcessOneJob,
|
||||
ChampFetchExternalDataJob,
|
||||
Cron::CronJob,
|
||||
DestroyRecordLaterJob,
|
||||
DossierIndexSearchTermsJob,
|
||||
DossierOperationLogMoveToColdStorageBatchJob,
|
||||
DossierRebaseJob,
|
||||
ImageProcessorJob,
|
||||
MaintenanceTasks::TaskJob,
|
||||
Migrations::BackfillStableIdJob,
|
||||
PriorizedMailDeliveryJob,
|
||||
ProcedureExternalURLCheckJob,
|
||||
ProcedureSVASVRProcessDossierJob,
|
||||
ProcessStalledDeclarativeDossierJob,
|
||||
ResetExpiringDossiersJob,
|
||||
SendClosingNotificationJob,
|
||||
VirusScannerJob,
|
||||
WebHookJob
|
||||
].each do |job_class|
|
||||
job_class.queue_adapter = :sidekiq
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue