Closed
Description
I am on ES 1.4.4 and I want to list indices with some prefix
curl -XPUT 'localhost:9200/quick'
curl -XPOST 'localhost:9200/quick/_close'
Then, there is difference between querying exact index and using prefix with wildcard
curl 'localhost:9200/_cat/indices/quick'
close quick
curl 'localhost:9200/_cat/indices/quic*'
--- nothing ---
On open index, the output is identical.