From 934fccd5223ae41f3f1cc7d548af509302f64828 Mon Sep 17 00:00:00 2001 From: Jasper Martin Date: Thu, 26 Jul 2018 21:24:31 +0800 Subject: Ignore ActiveRecord::InvalidForeignKey in ActiveStorage::Blob#purge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Do nothing instead of raising an error when it’s called on an attached blob. --- activestorage/app/jobs/active_storage/purge_job.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activestorage/app/jobs') diff --git a/activestorage/app/jobs/active_storage/purge_job.rb b/activestorage/app/jobs/active_storage/purge_job.rb index b021b5f2d0..fa15e0451d 100644 --- a/activestorage/app/jobs/active_storage/purge_job.rb +++ b/activestorage/app/jobs/active_storage/purge_job.rb @@ -2,7 +2,7 @@ # Provides asynchronous purging of ActiveStorage::Blob records via ActiveStorage::Blob#purge_later. class ActiveStorage::PurgeJob < ActiveStorage::BaseJob - discard_on ActiveRecord::RecordNotFound, ActiveRecord::InvalidForeignKey + discard_on ActiveRecord::RecordNotFound def perform(blob) blob.purge -- cgit v1.2.3