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
activestorage-7.0.2 app/jobs/active_storage/purge_job.rb
activestorage-7.0.1 app/jobs/active_storage/purge_job.rb
activestorage-7.0.0 app/jobs/active_storage/purge_job.rb
activestorage-6.1.4.4 app/jobs/active_storage/purge_job.rb
activestorage-6.0.4.4 app/jobs/active_storage/purge_job.rb
activestorage-7.0.0.rc3 app/jobs/active_storage/purge_job.rb
activestorage-6.1.4.3 app/jobs/active_storage/purge_job.rb
activestorage-6.0.4.3 app/jobs/active_storage/purge_job.rb
activestorage-6.0.4.2 app/jobs/active_storage/purge_job.rb
activestorage-6.1.4.2 app/jobs/active_storage/purge_job.rb
activestorage-7.0.0.rc2 app/jobs/active_storage/purge_job.rb
activestorage-7.0.0.rc1 app/jobs/active_storage/purge_job.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/activestorage-6.1.4.1/app/jobs/active_storage/purge_job.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/activestorage-6.1.4.1/app/jobs/active_storage/purge_job.rb
activestorage-7.0.0.alpha2 app/jobs/active_storage/purge_job.rb
activestorage-7.0.0.alpha1 app/jobs/active_storage/purge_job.rb
activestorage-6.1.4.1 app/jobs/active_storage/purge_job.rb
activestorage-6.0.4.1 app/jobs/active_storage/purge_job.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/activestorage-6.1.4/app/jobs/active_storage/purge_job.rb
activestorage-6.1.4 app/jobs/active_storage/purge_job.rb