Skip to content

Instantly share code, notes, and snippets.

View Erol's full-sized avatar

Erol Fornoles Erol

  • Laguna, Philippines
View GitHub Profile
class TestWorker < ApplicationWorker
sidekiq_options retry: false, queue: 'test'
def perform
Sidekiq::Batch.new.tap do |batch|
batch.on(:death, 'TestWorker#on_death')
batch.jobs do
SampleWorker.perform_async
end
end