Tian
Tian

Reputation: 672

Delayed Job - Rails 3 - Heroku

Has anyone gotten Delayed Job working on Heroku Beta for Rails 3?

We switched over to rails 3 and now I can no longer activate delayed job with "rake jobs:work"

Upvotes: 0

Views: 585

Answers (1)

Hortinstein
Hortinstein

Reputation: 2707

do you have active workers? It sounds like you have a job queue but no workers to process. Try this:

$ heroku workers 1

for more information: Running DJ workers on Heroku

Upvotes: 1

Related Questions