Change post-processing to be deferred only for large media types (#19617)
This commit is contained in:
parent
c68e6b52d9
commit
15bae3e0e4
2 changed files with 3 additions and 3 deletions
|
@ -248,11 +248,11 @@ class MediaAttachment < ApplicationRecord
|
|||
attr_writer :delay_processing
|
||||
|
||||
def delay_processing?
|
||||
@delay_processing
|
||||
@delay_processing && larger_media_format?
|
||||
end
|
||||
|
||||
def delay_processing_for_attachment?(attachment_name)
|
||||
@delay_processing && attachment_name == :file
|
||||
delay_processing? && attachment_name == :file
|
||||
end
|
||||
|
||||
after_commit :enqueue_processing, on: :create
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue