nesquena / backburner

Simple and reliable beanstalkd job queue for ruby
http://nesquena.github.com/backburner
MIT License
428 stars 68 forks source link

Default worker always active? #121

Closed loicberthou closed 3 years ago

loicberthou commented 8 years ago

Hi, I noticed that you can define the default worker through:

Backburner.configure do |config|
  config.default_worker   = Backburner::Workers::Simple
  config.primary_queue    = "backburner-jobs"
end

But I personally use the rake task to spawn the workers so is there still be a default worker doing nothing? Not a biggie but since I'm a perfectionist... Thanks!