Replies: 1 comment
-
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
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
-
Hello,
I'm trying to use Bull for my queue, but I've noticed that for repeatable jobs you are creating the next delayed job before processing the previous one. I don't understand why you are doing this instead of creating the next delayed job after the previous job complete.
With your implementation we can have duplicate jobs for the same task and if the first delayed job fail, the second job will run anyway. Or, if the first delayed job take more time than the configured time in repeat options, the second job will run in the same time that the previous one.
It is an intentional behavior? Am I forced to implement repeatable jobs myself with delay in my code?
Beta Was this translation helpful? Give feedback.
All reactions