Explorar el Código

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 hace 6 años
padre
commit
bff690df23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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