Browse Source

Changed wording in docs for Task.retry() to mention the fact that it requeues (#4933)

* changed wording for autodocs

* Updated wording to be more descriptive
Dash Winterson 6 năm trước cách đây
mục cha
commit
bff690df23
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      celery/app/task.py

+ 1 - 1
celery/app/task.py

@@ -592,7 +592,7 @@ class Task(object):
 
     def retry(self, args=None, kwargs=None, exc=None, throw=True,
               eta=None, countdown=None, max_retries=None, **options):
-        """Retry the task.
+        """Retry the task, adding it to the back of the queue.
 
         Example:
             >>> from imaginary_twitter_lib import Twitter