java - elasticsearch flushrequest.full() depricated between 1.3.2 and 1.7 -
i'm upgrading java code builds elasticsearch index elasticsearch 1.3.2 1.7 , spring-data-elasticsearch 1.2.1.release.
all except class destroy function
client.admin().indices().flush(new flushrequest(index_name).full(true));
now fails. full() no longer valid method.
i'm guessing default option , can away
client.admin().indices().flush(new flushrequest(index_name));
but i'm struggling find definitive documentation.
could tell me!?
thanks.
that appears case somewhat. @ least seems felt not necessary. here link change.
https://github.com/elastic/elasticsearch/commit/45dc3ef705676771e250fdafae5098a6cab9dc11
Comments
Post a Comment