You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
documentation suggests schedule.every(10).minutes.at("05:00") but schedule whines that "Invalid time format for a minutely job (valid format is :SS)". I tried changing to at(":300") (five minutes as seconds) but that also doesn't match the required format either.
The text was updated successfully, but these errors were encountered:
@ponders Did you try time.sleep for 5 mins and then schedule the job every 10 mins?
What you want is to start the job after 5 mins and then it must run every 10 mins if I understood your question correctly
@aquib-sh That completely defeats the purpose of using a scheduler.. Might aswell sleep for every 10 minutes.
@ponders I believe you could follow/combine the examples: Run a job once and Run a job every x minutes, where the first job runs in 5 minutes and schedules the actual "every-10-minute" job. Hope it helps!
documentation suggests schedule.every(10).minutes.at("05:00") but schedule whines that "Invalid time format for a minutely job (valid format is :SS)". I tried changing to at(":300") (five minutes as seconds) but that also doesn't match the required format either.
The text was updated successfully, but these errors were encountered: