Skip to content

v3.1.3 Maintenance release

Compare
Choose a tag to compare
@Crim Crim released this 11 Aug 10:03
· 55 commits to master since this release
63e93ff

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...