14 lines
293 B
Python
14 lines
293 B
Python
#
|
|
# encoding: utf-8
|
|
import os
|
|
from celery import Celery
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'home.settings')
|
|
|
|
appc = Celery('home')
|
|
appc.config_from_object('django.conf:settings', namespace='CELERY')
|
|
appc.autodiscover_tasks()
|
|
|
|
worker_prefetch_multiplier = 1
|
|
task_acks_late = True
|