I get this error when I run uwsgi the first time: ImportError: cannot import name indexes

When I cancel uwsgi and run it again it works but the site slows down and 502 error appears randomly. With django dev server or with HAYSTACK_ENABLE_REGISTRATIONS = False it works fine.

Any idea whats wrong?

Full Traceback:

File "/usr/local/lib/python2.6/dist-packages/django/utils/translation/init.py", line 36, in delayed_loader return getattr(trans, real_name)(*args, **kwargs)

File "/usr/local/lib/python2.6/dist-packages/django/utils/translation/trans_real.py", line 193, in activate _active[currentThread()] = translation(language)

File "/usr/local/lib/python2.6/dist-packages/django/utils/translation/trans_real.py", line 176, in translation default_translation = _fetch(settings.LANGUAGE_CODE)

File "/usr/local/lib/python2.6/dist-packages/django/utils/translation/trans_real.py", line 159, in _fetch app = import_module(appname)

File "/usr/local/lib/python2.6/dist-packages/django/utils/importlib.py", line 43, in import_module import(name)

File "/home/user/prject/apps/external/haystack/init.py", line 6, in from haystack.sites import site

File "/usr/local/lib/python2.6/dist-packages/django_haystack-1.1.0-py2.6.egg/haystack/init.py", line 154, in handle_registrations()

File "/usr/local/lib/python2.6/dist-packages/django_haystack-1.1.0-py2.6.egg/haystack/init.py", line 151, in handle_registrations search_sites_conf = importlib.import_module(settings.HAYSTACK_SITECONF)

File "/usr/local/lib/python2.6/dist-packages/django/utils/importlib.py", line 43, in import_module import(name)

File "/home/user/project/search_sites.py", line 4, in haystack.autodiscover()

File "/usr/local/lib/python2.6/dist-packages/django_haystack-1.1.0-py2.6.egg/haystack/init.py", line 121, in autodiscover importlib.import_module("%s.search_indexes" % app)

File "/usr/local/lib/python2.6/dist-packages/django/utils/importlib.py", line 43, in import_module import(name)

File "/home/user/project/apps/activity/search_indexes.py", line 1, in from haystack import indexes

ImportError: cannot import name indexes

link|improve this question
feedback

1 Answer

File "/home/user/prject/apps/external/haystack/init.py" File "/usr/local/lib/python2.6/dist-packages/django_haystack-1.1.0-py2.6.egg/haystack/init.py"

the package: haystack in two place, do you want to use installed version or copy it to your app path? remove one of it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.