https://prefect.io logo
x

x062Wyhdolq

08/23/2020, 10:38 AM
Hi guys I have an issue with a flow. In the transform function if certain data is not created I want to retry the fetch function after some time? How can I do it?
c

Chris White

08/24/2020, 3:42 PM
Hi @x062Wyhdolq - you can specify retry settings (such as
max_retries
and
retry_delay
) directly on your task. You can reference the task docstring for more details
👍 1