99432cbcfb
If there are any old or retries in the Sidekiq queue, NewNoteWorker will fail with the error: wrong number of arguments (given 2, expected 1) This change allows the optional second argument to be used to preserve backwards compatibility. It can be removed later. Closes #24678
15 lines
487 B
Ruby
15 lines
487 B
Ruby
class NewNoteWorker
|
|
include Sidekiq::Worker
|
|
include DedicatedSidekiqQueue
|
|
|
|
# Keep extra parameter to preserve backwards compatibility with
|
|
# old `NewNoteWorker` jobs (can remove later)
|
|
def perform(note_id, _params = {})
|
|
if note = Note.find_by(id: note_id)
|
|
NotificationService.new.new_note(note)
|
|
Notes::PostProcessService.new(note).execute
|
|
else
|
|
Rails.logger.error("NewNoteWorker: couldn't find note with ID=#{note_id}, skipping job")
|
|
end
|
|
end
|
|
end
|