Sha256: d0b4f9078ff4cc061baf4e107c333e8a48860ba9c96bc93af9fbe130ca881f9d

Contents?: true

Size: 398 Bytes

Versions: 116

Compression:

Stored size: 398 Bytes

Contents

# frozen_string_literal: true

# Provides asynchronous purging of ActiveStorage::Blob records via ActiveStorage::Blob#purge_later.
class ActiveStorage::PurgeJob < ActiveStorage::BaseJob
  queue_as { ActiveStorage.queues[:purge] }

  discard_on ActiveRecord::RecordNotFound
  retry_on ActiveRecord::Deadlocked, attempts: 10, wait: :exponentially_longer

  def perform(blob)
    blob.purge
  end
end

Version data entries

116 entries across 112 versions & 10 rubygems

Version Path
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/jobs/active_storage/purge_job.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activestorage-6.0.2.1/app/jobs/active_storage/purge_job.rb
activestorage-6.0.2.1 app/jobs/active_storage/purge_job.rb
activestorage-6.0.2 app/jobs/active_storage/purge_job.rb
activestorage-6.0.2.rc2 app/jobs/active_storage/purge_job.rb
activestorage-6.0.2.rc1 app/jobs/active_storage/purge_job.rb
activestorage-6.0.1 app/jobs/active_storage/purge_job.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activestorage-6.0.0/app/jobs/active_storage/purge_job.rb
activestorage-6.0.1.rc1 app/jobs/active_storage/purge_job.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activestorage-6.0.0/app/jobs/active_storage/purge_job.rb
activestorage-6.0.0 app/jobs/active_storage/purge_job.rb
activestorage-6.0.0.rc2 app/jobs/active_storage/purge_job.rb
activestorage-6.0.0.rc1 app/jobs/active_storage/purge_job.rb
activestorage-6.0.0.beta3 app/jobs/active_storage/purge_job.rb
activestorage-6.0.0.beta2 app/jobs/active_storage/purge_job.rb
activestorage-6.0.0.beta1 app/jobs/active_storage/purge_job.rb