Browse Source

Fix typo from "restart limit" to "retry limit" (#3807)

Salvatore Rinchiera 8 years ago
parent
commit
f68b63c03d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/app/task.py

+ 1 - 1
celery/app/task.py

@@ -605,7 +605,7 @@ class Task(object):
         Arguments:
             args (Tuple): Positional arguments to retry with.
             kwargs (Dict): Keyword arguments to retry with.
-            exc (Exception): Custom exception to report when the max restart
+            exc (Exception): Custom exception to report when the max retry
                 limit has been exceeded (default:
                 :exc:`~@MaxRetriesExceededError`).