my prefect task isn't retrying. i have retries=10, retry_delay_seconds=3 in the task decorator, and -> bool as the return.
on returning True it just completes the task instead of retrying?
i also tried a while True statement but everytime it catches an error it completes the task
any ideas on what else i could try or should look for?