Skip to content

Instantly share code, notes, and snippets.

@MarceloCajueiro
Created October 31, 2013 18:28
Show Gist options
  • Save MarceloCajueiro/7254544 to your computer and use it in GitHub Desktop.
Save MarceloCajueiro/7254544 to your computer and use it in GitHub Desktop.
Delete jobs from sidekiq
queue = Sidekiq::Queue.new("low")
queue.each do |job|
if job.klass == "MailChimpUpdate"
job.delete
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment