django-q
django-q copied to clipboard
Why are failed tasks not being reattempted?
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:

Here is the call for the above example:
async_task(send_app_notif_latest_device_task, arg1, arg2)
Thanks!
Same here. Anything on this?