Skip to content

Instantly share code, notes, and snippets.

@waltercool
Last active February 15, 2019 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waltercool/dfe52ad1868939fd36825c565363e4a5 to your computer and use it in GitHub Desktop.
Save waltercool/dfe52ad1868939fd36825c565363e4a5 to your computer and use it in GitHub Desktop.
Sidekiq Swiss Knife
# Clear all sidekiq scheduled
require 'sidekiq/api'
Sidekiq::ScheduledSet.new.clear
# Clear an specific queue by job name
jobs = Sidekiq::ScheduledSet.new.select {|retri| retri.klass == 'job_name' }
jobs.each(&:delete)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment