From 25a4de0ed0d10c28a9890552e9e6fd0972ca8e34 Mon Sep 17 00:00:00 2001 From: wad Date: Mon, 23 Apr 2018 16:17:44 +0300 Subject: [PATCH] =?UTF-8?q?periodic=5Fbilling=20=D1=80=D0=B0=D0=B7=20?= =?UTF-8?q?=D0=B2=203=20=D1=87=D0=B0=D1=81=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lms/celery.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lms/celery.py b/lms/celery.py index 9e37861..4f9d66d 100644 --- a/lms/celery.py +++ b/lms/celery.py @@ -21,9 +21,8 @@ register_signal(client) app.conf.beat_schedule = { 'periodic_billing': { - 'schedule': crontab(day_of_month='1', hour='1', minute='1'), # заглушка на время отладки - # 'schedule': crontab(minute='*/1'), - # crontab(minute='0',hour='*/3',), + # 'schedule': crontab(day_of_month='1', hour='1', minute='1'), # заглушка на время отладки + 'schedule': crontab(minute='0', hour='*/3',), 'task': 'finance.tasks.periodic_billing' } }