From 821b31e0ab43c37c59839046295b87df9b47fab2 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 12 Nov 2010 09:42:40 +0000 Subject: [PATCH] Fixed alliance scheduled task, and disabled rate limiting --- settings.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 151aada..149dd82 100755 --- a/settings.py +++ b/settings.py @@ -173,12 +173,14 @@ CELERYBEAT_SCHEDULE = { "schedule": timedelta(minutes=10), }, "alliance-update": { - "task": "import_alliance_details", + "task": "eve_api.tasks.import_alliance_details", "schedule": timedelta(hours=6), }, } CELERY_SEND_TASK_ERROR_EMAILS = True +CELERY_RESULT_BACKEND = "amqp" +CELERY_DISABLE_RATE_LIMITS = True # Load the Celery tasks djcelery.setup_loader()