Fix celery task running

This commit is contained in:
2023-02-16 02:38:30 -05:00
parent 21df4e0a77
commit 4ae70ef1f1
3 changed files with 9 additions and 2 deletions

View File

@ -0,0 +1,5 @@
# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app
__all__ = ('celery_app',)