Skip to content
Snippets Groups Projects
Unverified Commit 0773a512 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix trying to delete already deleted file when post-processing (#13406)

Fix #13403
parent 2924cef2
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ class PostProcessMediaWorker
media_attachment = MediaAttachment.find(media_attachment_id)
media_attachment.processing = :in_progress
media_attachment.save
media_attachment.file.reprocess_original!
media_attachment.file.reprocess!(:original)
media_attachment.processing = :complete
media_attachment.save
rescue ActiveRecord::RecordNotFound
......
......@@ -14,17 +14,6 @@ module Paperclip
end
end
def reprocess_original!
old_original_path = path(:original)
reprocess!(:original)
new_original_path = path(:original)
if new_original_path != old_original_path
@queued_for_delete << old_original_path
flush_deletes
end
end
def variant?(other_filename)
return true if original_filename == other_filename
return false if original_filename.nil?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment