这些是我的任务:
@task(name = 'hello')
def hello():
print "hello"
return "helo"
@task(name = 'hey')
def hey(resp):
print resp
我这样称呼他们:g = celery.chain(hello.s(),hey.s())
但我希望它像这样完成:你好任务应该返回一个值,不仅是任务“嘿”,它还应该返回一个值。我的意思是,一旦完成执行,我应该能够获得“hello”的返回值。怎么做?