Celery Starting a Task when Other Tasks have Completed
问题 I have 3 tasks in Celery.. celery_app.send_task('tasks.read_cake_recipes') celery_app.send_task('tasks.buy_ingredients') celery_app.send_task('tasks.make_cake') Both read_cake_recipes and buy_ingredients don't have any dependancies, however before the task make_cake can be run both read_cake_recipes and buy_ingredients need to have finished. make_cake can be run at ANYTIME after the first two have started. But make_cake has no idea if the other tasks have completed. So if read_cake_recipes or