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
Celery: increase the "visibility timeout" from 1h to 5h (#12342)
This is the time Celery waits for the worker to ack the task. After this
time, Celery will re-deliver this task to another worker.
```
In [1]: from readthedocs.worker import app
In [2]: app.conf.get("BROKER_TRANSPORT_OPTIONS")
Out[2]: {'visibility_timeout': 18000}
```
Closes#12317
0 commit comments