From 708ef48198be65ae060f5147cf5182830d2b80cd Mon Sep 17 00:00:00 2001 From: Imdad Ahad Date: Fri, 3 Feb 2017 14:57:42 +0000 Subject: [PATCH] Reset schedule to run at 00:30 daily --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 022ab2de3..f5354dc3d 100644 --- a/app/config.py +++ b/app/config.py @@ -126,7 +126,7 @@ class Config(object): }, 'send-daily-performance-platform-stats': { 'task': 'send-daily-performance-platform-stats', - 'schedule': crontab(minute='*/10'), # Every 10 minutes + 'schedule': crontab(minute=30, hour=0), # 00:30 'options': {'queue': 'periodic'} }, 'timeout-sending-notifications': {