Chained celery tasks with delay
May 9, 2024 · 1 min read · Leverage Celery Chains to execute sequential tasks. But it wasn't clear from the documentation on how to add a delay in-between executions. The initial (reasonable) attempt: result = ( add.s(1,1) | mul.s(3) | mul.s(4) ).apply_async(countdown=5...
Join discussion
























