Need To Restart Python While Applying Celery Config
That's a small story... I had this error: AttributeError: 'DisabledBackend' object has no attribute '_get_task_meta_for' When changed tasks.py, like Diederik said at Celery with
Solution 1:
If using the interpreter, you need to
reload(tasks)
this will force reimport tasks module
Post a Comment for "Need To Restart Python While Applying Celery Config"