Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 540 Bytes

File metadata and controls

18 lines (10 loc) · 540 Bytes

Task Retry

Automatically retry a task when it fails. Set retry on the @action decorator to define how many times the task should be retried before giving up.

Retry

{* ./docs_src/retry/retry.py hl[4,12,17] *}

Retry with Delay

Add retry_delay to wait a fixed number of seconds between each attempt.

{* ./docs_src/retry/retry_delay.py hl[4,12,17] *}

References