Commit 1c837b1027dc9004825c2c51d6acd267979ba4bf
1 parent
664f5a8f
Exists in
master
and in
2 other branches
Changin pendencies cron to run at 5am
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
amadeus/settings.py
@@ -215,7 +215,7 @@ CRON_CLASSES = [ | @@ -215,7 +215,7 @@ CRON_CLASSES = [ | ||
215 | ] | 215 | ] |
216 | 216 | ||
217 | CRONJOBS = [ | 217 | CRONJOBS = [ |
218 | - ('0 0 * * *', 'notifications.cron.notification_cron'), | 218 | + ('0 5 * * *', 'notifications.cron.notification_cron'), |
219 | ('0 0 * * *', 'goals.cron.setgoals_cron') | 219 | ('0 0 * * *', 'goals.cron.setgoals_cron') |
220 | ] | 220 | ] |
221 | 221 |