my environment is composed of django, celery and mongodb as a back end.
I managed to create a periodic tasks using djcelery admin interface and after starting celerybeat I can see it runs. This task is simple: it just makes an addition of 2 integers as proposed in celery tutorial.
I launch celeryd with the following command line
python manage.py celeryd -E -l INFO --settings=settings
celerybeat with the following command line:
python manage.py celerybeat --settings=settings
and finally celerycam to take snapshots of my tasks:
python manage.py celerycam --settings=settings
When I try to display celery tasks in djcelery admin however I keep having the same error message, does anyone know how to fix it ?