Django - Celery and Background Tasks
Given this Celery task code snippet, what will be the output if the task raises a ValueError on the first run?
```python
@app.task(bind=True, max_retries=3)
def process_data(self):
try:
raise ValueError('Fail')
except ValueError as exc:
raise self.retry(exc=exc, countdown=10)
```
