From 7f6840c08ff86143f8ae896f43ef61b0787f6e08 Mon Sep 17 00:00:00 2001 From: okt Date: Thu, 26 Jun 2014 16:21:01 +0300 Subject: [PATCH] changed settings for celery --- project/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/settings.py b/project/settings.py index 0f3627b..e99aa54 100644 --- a/project/settings.py +++ b/project/settings.py @@ -240,7 +240,7 @@ from datetime import timedelta CELERYBEAT_SCHEDULE = { 'check-license': { 'task': 'project.customer.tasks.check_license', - 'schedule': timedelta(seconds=30), + 'schedule': timedelta(hours=1), }, }