Files
gh-christianlouis-docuelevate/app/tasks/retry_config.py
T
2025-03-25 10:48:55 +01:00

10 lines
250 B
Python

#!/usr/bin/env python3
from celery import Task
class BaseTaskWithRetry(Task):
autoretry_for = (Exception,)
retry_kwargs = {"max_retries": 3, "countdown": 10} # 3 retries, 10s delay
retry_backoff = True # Exponential backoff