[Fixed]-CircleCI Elastic Search with Haystack

1👍

Right now, CirleCI’s default version of ElasticSearch is currently v0.90.2 and Haystack v2.4.X only supports ElasticSearch v1.X:

http://django-haystack.readthedocs.org/en/latest/installing_search_engines.html#elasticsearch

You want to explicitly download a v1.X+ version of ElasticSearch as a dependency before your tests are ran:

https://circleci.com/docs/installing-elasticsearch

This worked for me.

👤maxm

Leave a comment