bugfix, have hourly run occur at the 59th minute
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-16 10:54:43 -04:00
parent 61f6ea3502
commit 8d51a75275

View File

@@ -37,6 +37,6 @@ celerymsg.conf.beat_schedule = {
'hourly-createevents': {
'task': 'worker.runCreateEvents',
# Run hourly
'schedule': crontab(hour="*"),
'schedule': crontab(hour="*", minute="59"),
}
}