I recently upgraded Elastic Search from v 1.7 to 2.4. I'm working in python and using pyes library to communicate to Elastic Search. In my code, I have this line in place to refresh index.
con.indices.refresh()
This was working fine with ES 1.7, however with ES 2.4, I'm getting this exception:
ElasticSearchException: Unknown exception type: 408
Refreshing via curl works just fine, i.e
curl localhost:9200/_refresh
Is there any changes in Elastic Search 2.4 that is breaking this piece of code? Thanks