Sha256: 01459494143c0d676d77e56e3b46fdf32c719e192182c7ce267d509cfa087748

Contents?: true

Size: 481 Bytes

Versions: 33

Compression:

Stored size: 481 Bytes

Contents

# frozen_string_literal: true

require "active_support/core_ext/object/try"

# Provides asynchronous mirroring of directly-uploaded blobs.
class ActiveStorage::MirrorJob < ActiveStorage::BaseJob
  queue_as { ActiveStorage.queues[:mirror] }

  discard_on ActiveStorage::FileNotFoundError
  retry_on ActiveStorage::IntegrityError, attempts: 10, wait: :polynomially_longer

  def perform(key, checksum:)
    ActiveStorage::Blob.service.try(:mirror, key, checksum: checksum)
  end
end

Version data entries

33 entries across 33 versions & 4 rubygems

Version Path
activestorage-8.0.0 app/jobs/active_storage/mirror_job.rb
activestorage-7.2.2 app/jobs/active_storage/mirror_job.rb
activestorage-7.1.5 app/jobs/active_storage/mirror_job.rb
activestorage-8.0.0.rc2 app/jobs/active_storage/mirror_job.rb
activestorage-7.2.1.2 app/jobs/active_storage/mirror_job.rb
activestorage-7.1.4.2 app/jobs/active_storage/mirror_job.rb
activestorage-8.0.0.rc1 app/jobs/active_storage/mirror_job.rb
activestorage-7.2.1.1 app/jobs/active_storage/mirror_job.rb
activestorage-7.1.4.1 app/jobs/active_storage/mirror_job.rb
activestorage-8.0.0.beta1 app/jobs/active_storage/mirror_job.rb
omg-activestorage-8.0.0.alpha9 app/jobs/active_storage/mirror_job.rb
omg-activestorage-8.0.0.alpha8 app/jobs/active_storage/mirror_job.rb
omg-activestorage-8.0.0.alpha7 app/jobs/active_storage/mirror_job.rb
omg-activestorage-8.0.0.alpha4 app/jobs/active_storage/mirror_job.rb
omg-activestorage-8.0.0.alpha3 app/jobs/active_storage/mirror_job.rb
activestorage-7.1.4 app/jobs/active_storage/mirror_job.rb
activestorage-7.2.1 app/jobs/active_storage/mirror_job.rb
activestorage-7.2.0 app/jobs/active_storage/mirror_job.rb
activestorage-7.2.0.rc1 app/jobs/active_storage/mirror_job.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activestorage-7.1.3.4/app/jobs/active_storage/mirror_job.rb