Replies: 1 comment 4 replies
-
Hi @dannwise, Thanks for your kind words. It means a lot <3 This library doesn't implement its own back-off behavior, but relies on the default behavior of your task library. In both cases, the default behavior is well documented. A quick Google search should answer all your questions. If it doesn't, I am happy to help. Cheers! |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey @codingjoe, congratulations on the library. Very nice work.
Could you tell me if there is a way to configure the task retry time?
While using it I've noticed that whenever a machine task returns False it will auto-retry within 180 seconds (for celery). Even if I make the flow goes with a
tasks.Wait(timedelta(days=1))
for instance, the Wait task will return False and keep retrying every 180 seconds. So, tasks that should hang for long periods keep getting evaluated without need.Beta Was this translation helpful? Give feedback.
All reactions