[Django]-Django Celery – How to start a task with a delay of n – seconds – countdown flag is ignored

14πŸ‘

βœ…

For future reference. The task has been executed immediately because I have set the CELERY_ALWAYS_EAGER setting to True, which has the effect that tasks are run synchronously. Setting this variable to False solved my problem.

Hope this helps somebody.

Leave a comment