Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resque workers do not start properly

I use devise and I can send mails with resque. I use this wiki: How To: Send devise emails in background (Resque, Sidekiq and Delayed::Job)

I have jobs in queue but no workers. Do I have to create task, or workers?

like image 866
quatermain Avatar asked Jun 11 '12 10:06

quatermain


1 Answers

OK, try adding this to your Rakefile:

require 'resque/tasks'

Then run your jobs:

QUEUE=* rake resque:work
like image 123
Jesse Wolgamott Avatar answered Oct 22 '22 05:10

Jesse Wolgamott