demarches-normaliennes/app/jobs/cron/fix_missing_antivirus_analysis_job.rb

13 lines
340 B
Ruby
Raw Normal View History

2020-08-05 18:40:47 +02:00
class Cron::FixMissingAntivirusAnalysisJob < Cron::CronJob
2020-12-17 10:54:12 +01:00
self.schedule_expression = "every day at 2 am"
def perform
ActiveStorage::Blob.where("metadata like '%\"virus_scan_result\":\"pending%'").each do |b|
begin
VirusScannerJob.perform_now(b)
rescue ActiveStorage::IntegrityError
end
end
end
end