From 362dac02ff03e09b3767e1819cabdf73bd29ac25 Mon Sep 17 00:00:00 2001 From: Mo Mirza Date: Mon, 7 Oct 2019 13:57:17 +0100 Subject: [PATCH] Fix typo --- checklist-en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checklist-en.md b/checklist-en.md index 6d5a171..d001d64 100644 --- a/checklist-en.md +++ b/checklist-en.md @@ -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: ```