Replies: 1 comment
-
|
It's because generally scheduler gathers tasks once every minute. You can increase how often schedules are being pulled from sources by specifying |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I’m using
SmartRetryMiddlewareto handle retries for failed tasks:I noticed that when I don’t use a scheduler, retries happen immediately, one after another — effectively ignoring the
default_delayparameter.However, when I do use scheduler, retries are only executed after the scheduler runs its
cycle — which happens once per minute by default
Can you please explain how to solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions