Description
I am currently migrating the next version of Spring Data Elasticsearch to use the new Rest5Client and have a light problem:
The old RestClientBuilder was offering a HttpClientConfigCallback which Spring Data Elasticsearch used to configure many aspects of the http client (proxy, ssl stuff, ...).
In the new Rest5ClientBuilder there is no such way to configure the CloseableHttpAsyncClient that is created. This means that I would have to create my own client from scratch?
Is it planned to add such a callback again? I'd rather build on a basic http client provided by the Rest5ClientBuilder than creating my own.
Description
I am currently migrating the next version of Spring Data Elasticsearch to use the new
Rest5Clientand have a light problem:The old
RestClientBuilderwas offering aHttpClientConfigCallbackwhich Spring Data Elasticsearch used to configure many aspects of the http client (proxy, ssl stuff, ...).In the new
Rest5ClientBuilderthere is no such way to configure theCloseableHttpAsyncClientthat is created. This means that I would have to create my own client from scratch?Is it planned to add such a callback again? I'd rather build on a basic http client provided by the
Rest5ClientBuilderthan creating my own.