ソースを参照

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 年 前
コミット
bff690df23
1 ファイル変更1 行追加1 行削除
  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