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
Describe the bug
When a task is removed and then added again but the start time has passed, it still runs the task if the start time of the task is within one hour after the start time.
I dont think i set anything for a retry, so i think its a default setting somewhere when the window is missed and the time is within one hour it still runs the task. But the weird thing is that the task is deleted and added again so there isnt anything to be missed.
To Reproduce
app.task(daily.at('14:30'), func_name='run', name='task1', path=script, execution='thread')
app.session['task1'].delete()
Describe the bug
When a task is removed and then added again but the start time has passed, it still runs the task if the start time of the task is within one hour after the start time.
I dont think i set anything for a retry, so i think its a default setting somewhere when the window is missed and the time is within one hour it still runs the task. But the weird thing is that the task is deleted and added again so there isnt anything to be missed.
To Reproduce
app.task(daily.at('14:30'), func_name='run', name='task1', path=script, execution='thread')
app.session['task1'].delete()
add_task = FuncTask(func_name='run', name='task', path=script, execution='thread', start_cond=daily.at('14:30') )
app.session.add_task(add_task)
Expected behavior
I would expect that the task is removed and added and waits for the next run.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: