在为django尝试芹菜时,我在装饰器上遇到了@task问题。这在Windows 7上运行。
在我的 celerytest.tasks 模块中,我有以下代码
from celery import task
@task
def add(x,y):
return x + y
从命令提示符我运行:
python manage.py shell
尝试从外壳导入我的模块:
from celerytest.tasks import add
我收到以下错误:
>>> from celerytest.tasks import add
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "d:...celerytesttasks.py", line 8, in <module>
@task
TypeError: 'module' object is not callable
我尝试了很长时间的谷歌搜索,但似乎我是世界上唯一一个有这个问题的人。
好吧,我正在阅读 2.6.0 rc3 的文档,但安装了 2.5.3。
http://ask.github.com/celery/django/first-steps-with-django.html
像这样使用导入时:
from celery.task import task
一切似乎都正常。