You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the following decorator for one of my tasks:
@app.task(autoretry_for=(Exception,))
I was hoping that the number of retries would be reflected on the "retries" column under table celery_monitor_taskstate but for some reason, it's always 0. I'm positive that the task is failing and retrying since I can see the state changes via Flower.
Any ideas? Is there anything I'm missing?
The text was updated successfully, but these errors were encountered:
Hi there,
I'm using the following decorator for one of my tasks:
@app.task(autoretry_for=(Exception,))
I was hoping that the number of retries would be reflected on the "retries" column under table celery_monitor_taskstate but for some reason, it's always 0. I'm positive that the task is failing and retrying since I can see the state changes via Flower.
Any ideas? Is there anything I'm missing?
The text was updated successfully, but these errors were encountered: