django-helpdesk/helpdesk/tasks.py
Gibbs Consulting fedcca42ad
Update tasks.py
Following https://docs.celeryproject.org/en/stable/internals/deprecation.html the importing of the celery task decorator needs to be updated for use with the current version of the celery package.
2021-11-12 11:56:22 -08:00

9 lines
130 B
Python

from celery import shared_task
from .email import process_email
@shared_task
def helpdesk_process_email():
process_email()