-
Notifications
You must be signed in to change notification settings - Fork 971
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scheduler does not account for job execution time #268
Comments
This issue has been resolved before: Explanation: I had the same problem. I told the function to launch every 6 hours so I got a split like so: 6:26, 12:27, 18:28, 0:29,6:30. |
Added an FAQ item, thanks @MikeDoes! |
@dbader The main problem is the syntax implies a scheduling service ( |
It looks like several users have unwittingly run into this issue, and may not know the cause: |
It seems that schedule does not account for the time it takes the scheduled job to complete. For example:
This code example executes
job
every 12 seconds instead of every 10. This is not noticeable if jobs are short - but in my case they may take several hours (delay is 1 day), so this is quite problematic.The text was updated successfully, but these errors were encountered: