Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion checklist-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
raise self.retry(exc=e, countdown=exponential_backoff(self))
```
* [ ] Use [`autoretry_for`](http://docs.celeryproject.org/en/master/userguide/tasks.html#automatic-retry-for-known-exceptions) to reduce the boilerplate code for retrying tasks.
* [ ] Use [`retry_backoff`](http://docs.celeryproject.org/en/master/userguide/tasks.html#Task.retry_backoff) to reduce the boilerplate code when doing exponention backoff.
* [ ] Use [`retry_backoff`](http://docs.celeryproject.org/en/master/userguide/tasks.html#Task.retry_backoff) to reduce the boilerplate code when doing exponential backoff.
* [ ] For tasks that require high level of reliability, use `acks_late` in combination with `retry`. Again, make sure tasks are idempotent and atomic. [(Should I use retry or acks_late?)](http://docs.celeryproject.org/en/latest/faq.html#faq-acks-late-vs-retry)
* [ ] Set hard and soft time limits. Recover gracefully if things take longer than expected:
```
Expand Down