Created
November 13, 2020 18:23
-
-
Save jschee/cb6a1b6eabc725ee09c403df25a91b79 to your computer and use it in GitHub Desktop.
clear_queue.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## i stash this in rails root folder and run it when i need to clear my sidekiq queues in development. | |
require 'sidekiq/api' | |
Sidekiq::Queue.all.each(&:clear) | |
Sidekiq::RetrySet.new.clear | |
Sidekiq::ScheduledSet.new.clear | |
Sidekiq::DeadSet.new.clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment