-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot import name state: from celery.events.state import state #24
Comments
I get the same. Thanks for your analysis! |
Issue #22 tries to fix this, seems the |
Unfortunately, for me this problem was solved only after downgrading celery to version 3.0. |
I'm seeing this with celery 3.1 when running any of the celery commands (beat, worker, etc). Also have django-celery installed, but am using the new API (without djcelery.setup_loader()). |
Still running into this problem, one year later. |
Same error here too. |
Same error here, after update celery and django-celery to: |
Same error here, as well. |
Same error |
Aparently, there's a pull request that solves this that's been waiting to be merged for quite some time. |
Same here
|
Update import statement from "from celery.events.state import state" to "from celery.events.state import State as state" in the below files. |
I got this when trying to run celerymon:
Problem is pretty simple:
Obviously, need to import State instead of state - or vice versa?
Can anybody comment on, confirm such bug and help to solve?
The text was updated successfully, but these errors were encountered: