diff --git a/lms/celery.py b/lms/celery.py index 361ae63..27eab67 100644 --- a/lms/celery.py +++ b/lms/celery.py @@ -24,10 +24,10 @@ app.conf.beat_schedule = { 'schedule': crontab(minute='0', hour='*/3',), 'task': 'finance.tasks.periodic_billing' }, - # 'statistic_teachers': { - # 'schedule': crontab(hour='16', minute='0'), - # 'task': 'progress.tasks.statistic_teachers' - # } + 'statistic_teachers': { + 'schedule': crontab(minute='*/2'), + 'task': 'progress.tasks.statistic_teachers' + } }