You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.