Fixed alliance scheduled task, and disabled rate limiting

This commit is contained in:
2010-11-12 09:42:40 +00:00
parent d677b13856
commit 821b31e0ab

View File

@@ -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()