diff --git a/app/jobs/characterize_job.rb b/app/jobs/characterize_job.rb index ccf24618..0bf2bd91 100644 --- a/app/jobs/characterize_job.rb +++ b/app/jobs/characterize_job.rb @@ -19,7 +19,7 @@ def perform(file_set, file_id, filepath = nil, derivation_path = nil, delete_cha file_set.update_index file_set.parent&.in_collections&.each(&:update_index) derivation_path = filepath unless derivation_path && File.exist?(derivation_path) - CreateDerivativesJob.set(queue: queue_name).perform_later(file_set, file_id, derivation_path) + CreateDerivativesJob.set(queue: 'derivatives').perform_later(file_set, file_id, derivation_path) unlink_filepath(filepath, delete_characterization_path.to_s) if delete_characterization_path end