I am using celery 3.1.18 with django 1.7 and redis. I am using CELERY_RESULT_BACKEND as redis. But the problem is whenever I push the task to the celery queue. I am not able to see celery-task-meta* key in redis. Please help
Asked
Active
Viewed 662 times
0
-
Can you see the task you are executing in the celery info log? >> python manage.py celeryd -l INFO – Zohair May 08 '17 at 10:04
-
No. I am not able to see. After debugging I found that is it because of celery-task-meta-
not being present in the db – siger May 08 '17 at 10:08 -
Now the worker is giving this problem. When I start it , it says **DatabaseError: DatabaseWrapper objects created in a thread can only be used in that same thread. The object with alias 'default' was created in thread id 139876350854976 and this is thread id 34516176.** – siger May 11 '17 at 06:07