aboutsummaryrefslogblamecommitdiffstats
path: root/activestorage/app/jobs/active_storage/analyze_job.rb
blob: 804ee4557afff91ffa52689fbd57751180159a48 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                                                                      
                                                        

                                                                                   



                   
# frozen_string_literal: true

# Provides asynchronous analysis of ActiveStorage::Blob records via ActiveStorage::Blob#analyze_later.
class ActiveStorage::AnalyzeJob < ActiveStorage::BaseJob
  retry_on ActiveStorage::IntegrityError, attempts: 10, wait: :exponentially_longer

  def perform(blob)
    blob.analyze
  end
end