forked from github/plane
d88a95b1e9
* dev: update celery configuration to root folder * dev: update import for celery * fix: worker to deserialize data
18 lines
525 B
Python
18 lines
525 B
Python
import os
|
|
from celery import Celery
|
|
from plane.settings.redis import redis_instance
|
|
|
|
# Set the default Django settings module for the 'celery' program.
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "plane.settings.production")
|
|
|
|
ri = redis_instance()
|
|
|
|
app = Celery("plane")
|
|
|
|
# Using a string here means the worker will not have to
|
|
# pickle the object when using Windows.
|
|
app.config_from_object("django.conf:settings", namespace="CELERY")
|
|
|
|
# Load task modules from all registered Django app configs.
|
|
app.autodiscover_tasks()
|