You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from __future__ import absolute_import
from celery import Celery
app = Celery('job_costing',
broker='django://')
if __name__ == '__main__':
app.start()
init.py
from __future__ import absolute_import
# 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
The text was updated successfully, but these errors were encountered:
I'm trying to use the app to send emails but I'm always facing an error.
These are the packages in my environment:
settings.py
celery.py
init.py
The text was updated successfully, but these errors were encountered: