Retries
Retries allow you to re-run a task upon failure. They're pretty easy to configure:
For class-based tasks, you can adjust the number of times a task should be retried by setting the RETRIES
and RETRY_DELAY_SECONDS
class attributes:
RETRIES
: the number of times the task should be retried. Default is 0.RETRY_DELAY_SECONDS
: the number of seconds to wait in between retries. Must be specified alongsideRETRIES
. Default is 0.
For example:
Last updated