Skip to content

Instantly share code, notes, and snippets.

@pzaich
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save pzaich/9352790 to your computer and use it in GitHub Desktop.

Select an option

Save pzaich/9352790 to your computer and use it in GitHub Desktop.
clear sidekiq scheduled jobs
jobs = Sidekiq.redis { |r| r.zrange("schedule", 0, -1, {withscores: true}) }
Sidekiq.redis { |r| jobs.each {|j| r.zrem "schedule", j } }
Sidekiq.redis { |r| r.FLUSHDB }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment