uWSGI: Run minutely jobs hourly instead

Fixes: https://github.com/maxking/docker-mailman/issues/327

Signed-off-by: David Galloway <dgallowa@redhat.com>
This commit is contained in:
David Galloway
2019-10-03 11:38:44 -04:00
parent 6f26dc9145
commit 41092d35f9

View File

@@ -24,7 +24,9 @@ gid = mailman
attach-daemon = ./manage.py qcluster
# Setup hyperkitty's cron jobs.
unique-cron = -1 -1 -1 -1 -1 ./manage.py runjobs minutely
# 'minutely' jobs are run hourly for perf reasons.
# See https://github.com/maxking/docker-mailman/issues/327
unique-cron = 0 -1 -1 -1 -1 ./manage.py runjobs minutely
unique-cron = -15 -1 -1 -1 -1 ./manage.py runjobs quarter_hourly
unique-cron = 0 -1 -1 -1 -1 ./manage.py runjobs hourly
unique-cron = 0 0 -1 -1 -1 ./manage.py runjobs daily