v3.1.3 Maintenance release
3.1.3 (08/11/2021)
- Issue-55 Create new HttpContext for every request.
- PR-59 Adds supported method to modify the underlying configuration of HttpClient via HttpClientConfigHooks interface.
Usage of these hooks would look like:
// Directly create underlying RestClient and pass your HttpClientConfigHooks implementation.
final RestClient restClient = new HttpClientRestClient(new HttpClientConfigHooks {
// Override methods as needed to modify behavior.
});
// Create KafkaConnectClient, passing configuration and RestClient implementation
final KafkaConnectClient client = new KafkaConnectClient(configuration, restClient);
// Use client as normal...