@celery.tasks
def a():
time.sleep(2)
print 'aaa'
@celery.tasks
def b():
time.sleep(2)
print 'bbb'
Now I want when celery take task-a and task-b at the same time, task-a execute first, and then the task-b should execute after task-a. DOes celery allow this happend?