소스 검색

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