Sentry 4.8.2 + Python2.7 + ubuntu 10.04 + SQLite

Sentry 是 disqus 釋出的一個圖像化 logging 的工具
本身是基於 django 的,安裝等基本就不多說明了
可以參考 http://sentry.readthedocs.org/en/latest/quickstart/index.html#install-se...

而我還到的問題是:

ImportError: cannot import name abbrtask

問題源自 celery 的最新 3.0 版本不相容於 sentry
https://github.com/dcramer/sentry/issues/538

解決方法:
pip install sentry "celery<3.0"

Google