delayed_job queue not being processed on Heroku

后端 未结 4 472
暖寄归人
暖寄归人 2021-01-23 02:14

I\'m running a Rails 3 app with delayed_job. The issue I\'ve come across is that though the app is correctly adding jobs to the queue, they are never being processed.

4条回答
  •  失恋的感觉
    2021-01-23 02:53

    In the end, the problem turned out to be a bug in Rake 0.9.0. As Rails depends on Rake, running bundle install after this release of Rake broke my delayed jobs.

    The fix is to add gem 'rake', '0.8.7' to your gemfile.

    More details can be found below...

    DHH's tweet: http://twitter.com/dhh/status/71966528744071169

    Discussion in rails_admin's issue tracker: https://github.com/sferik/rails_admin/issues/428

提交回复
热议问题