module Resque
Public Instance Methods
remove_queue(queue)
click to toggle source
# File lib/resque/plugins/workers/lock.rb, line 6 def remove_queue(queue) Resque.redis.keys('workerslock:*').each{ |x| Resque.redis.del(x) } orig_remove_queue(queue) end
Also aliased as: orig_remove_queue