django-celery
django-celery copied to clipboard
autodiscover_tasks can not work when django app layers more than 2
for example, a django project like this: /proj /proj/apps/app1/app11 /proj/apps/app1/app12 /proj/apps/app1/app11/tasks.py /proj/proj/setting.py /proj/proj/celery.py /proj/proj/init.py
autodiscover_tasks can not find the /proj/apps/app1/app11/tasks.py , how to resolve this problem? thanks!
Have app1.tasks import app11.tasks!
i use CELERY_IMPORTS, and it works , but i want to find a way not to use it , and why autodiscover_task not work, tks
Any solutions? Have same issue...
imports it does not solve it