gitlab-org--gitlab-foss/app/workers/new_note_worker.rb
Stan Hu 99432cbcfb Preserve optional second parameter in NewNoteWorker jobs
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
2016-11-19 10:18:44 -08:00

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