耙子中止!不知道如何构建任务“jobs:work”
大家好:我在 Heroku 上,安装了elasted_job,当我尝试运行后台作业时收到上述错误。我尝试过提交罚单并在网上搜索但无济于事。
谢谢...克里斯
Hi all: I'm on Heroku, installed delayed_job and am getting the above error when I attempt to run a background job. I've tried filing a ticket and scouring the net to no avail.
Thanks...Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您仅使用
rake jobs:work
在本地启动 DJ Worker。在 Heroku 上时,您必须添加工作人员:herokuworkers +1 --app myapp
。不过,这些都是要花钱的,所以当你完成后,你可能想将工人设置回 0。编辑:
看起来文档中已经清楚地解释了这一点: http:// /docs.heroku.com/delayed-job#running-dj-workers-on-heroku。
You only use
rake jobs:work
to start a DJ worker locally. When on Heroku, you have to add workers:heroku workers +1 --app myapp
. Those cost money though, so you might want to set workers back to 0 when you're done with it.Edit:
Looks like this is clearly explained in the docs: http://docs.heroku.com/delayed-job#running-dj-workers-on-heroku.