我正试图按照的指示在Heroku上启动并运行芹菜
当我尝试运行"heroku local"时,它会给我以下错误:
10:05:42 PM worker.1 | Error:
10:05:42 PM worker.1 | Unable to load celery application.
10:05:42 PM worker.1 | The module tasks was not found.
非常感谢您的帮助。
编辑:应该注意的是,我的根目录中有一个模块tasks.py,其中包含以下代码:
import celery
app = celery.Celery('example')
@app.task
def add(x, y):
return x + y
根据注释,我认为您需要在项目文件夹(与celenery.py相同的文件夹(中填充init.py。您可以遵循celery官方文档。
这是您应该添加到__init__.py:的内容
from __future__ import absolute_import, unicode_literals
# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app
__all__ = ('celery_app',)
希望这能有所帮助。