Last active
May 1, 2020 16:26
-
-
Save FutoRicky/206e08ef10d79273a8f26f6d907dce9a to your computer and use it in GitHub Desktop.
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
require 'sidekiq/api' | |
queue = Sidekiq::Queue.new("default") | |
queue.each do |job| | |
job.klass # => 'TestWorker' | |
job.args # => ['easy'] | |
job.delete if job.jid == 'abcdef1234567890' || job.klass == 'TestWorker' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment