I\'m running the First Steps with Celery Tutorial.
We define the following task:
from celery import Celery app = Celery(\'tasks\', broker=\'amqp://g
I suggest having a look at: http://www.cnblogs.com/fangwenyu/p/3625830.html
There you will see that instead of
app = Celery('tasks', broker='amqp://guest@localhost//')
you should be writing
app = Celery('tasks', backend='amqp', broker='amqp://guest@localhost//')
This is it.