mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
06f8baf73c
Fixes #37305.
13 lines
413 B
Ruby
13 lines
413 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Provides asynchronous analysis of ActiveStorage::Blob records via ActiveStorage::Blob#analyze_later.
|
|
class ActiveStorage::AnalyzeJob < ActiveStorage::BaseJob
|
|
queue_as { ActiveStorage.queues[:analysis] }
|
|
|
|
discard_on ActiveRecord::RecordNotFound
|
|
retry_on ActiveStorage::IntegrityError, attempts: 10, wait: :exponentially_longer
|
|
|
|
def perform(blob)
|
|
blob.analyze
|
|
end
|
|
end
|