Skip to content

Instantly share code, notes, and snippets.

View vishalzambre's full-sized avatar
🏠
Working Remotely

Vishal Zambre vishalzambre

🏠
Working Remotely
View GitHub Profile
@humpok
humpok / reset_sidekiq.rb
Created September 13, 2018 13:38
Delete All Sidekiq Batches and Jobs
Sidekiq::BatchSet.new.each { |batch| Sidekiq::Batch::Status.new(batch.bid).delete }
Sidekiq::Queue.all.each(&:clear)