Skip to content
Snippets Groups Projects
Commit bc75c5ce authored by Frederic Aust's avatar Frederic Aust
Browse files

Bugfix: schedule 6h update today module

parent ec9ed1a9
No related branches found
No related tags found
No related merge requests found
...@@ -505,7 +505,7 @@ def init_schedule_jobs(): ...@@ -505,7 +505,7 @@ def init_schedule_jobs():
schedule.every().day.at("09:00").do(run_threaded, event_reminder.check_for_events) schedule.every().day.at("09:00").do(run_threaded, event_reminder.check_for_events)
schedule.every().tuesday.at("10:00").do(run_threaded, gg_remind_schichten) schedule.every().tuesday.at("10:00").do(run_threaded, gg_remind_schichten)
schedule.every().day.at("11:00").do(run_threaded, gg_remind_stundenzettel) schedule.every().day.at("11:00").do(run_threaded, gg_remind_stundenzettel)
schedule.every().day.at("00:01").do(run_threaded,today.update()) schedule.every(6).hours.do(run_threaded,today.update())
# schedule.every(10).seconds.do(run_threaded, birthday_reminder.check_for_birthdays) # schedule.every(10).seconds.do(run_threaded, birthday_reminder.check_for_birthdays)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment