mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-21 15:53:21 +01:00
32e07035f3
* add tests for new uploads
23 lines
678 B
Python
23 lines
678 B
Python
from __future__ import absolute_import
|
|
|
|
import os
|
|
|
|
from celery import Celery
|
|
from django.conf import settings
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "cms.settings")
|
|
app = Celery("cms")
|
|
|
|
app.config_from_object("django.conf:settings")
|
|
app.autodiscover_tasks()
|
|
|
|
app.conf.beat_schedule = app.conf.CELERY_BEAT_SCHEDULE
|
|
app.conf.broker_transport_options = {"visibility_timeout": 60 * 60 * 24} # 1 day
|
|
# http://docs.celeryproject.org/en/latest/getting-started/brokers/redis.html#redis-caveats
|
|
|
|
# setting this to settings.py file only is not respected. Setting here too
|
|
app.conf.task_always_eager = settings.CELERY_TASK_ALWAYS_EAGER
|
|
|
|
|
|
app.conf.worker_prefetch_multiplier = 1
|