Koed00 / django-q

A multiprocessing distributed task queue for Django
https://django-q.readthedocs.org
MIT License
1.83k stars 285 forks source link

Why are failed tasks not being reattempted? #714

Open astrike30 opened 1 year ago

astrike30 commented 1 year ago

Hi, my failed tasks are not being reattempted.

Here is my config:

Q_CLUSTER = {
    "django_redis": "default",
    "save_limit": 10000,
    "timeout": 300,
    "retry": 300,
    "cpu_affinity": 3,
    "max_attempts": 3,
}

Here is an example:

Screenshot 2023-01-03 at 15 13 20 Screenshot 2023-01-03 at 15 16 50

Here is the call for the above example: async_task(send_app_notif_latest_device_task, arg1, arg2)

Thanks!

weberxw commented 1 year ago

Same here. Anything on this?