module Resque

Public Instance Methods

orig_remove_queue(queue)
Alias for: remove_queue
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