Bastien Bouclet
Bastien Bouclet
When using `Meter`s or `Timer`s backed by the `SlidingTimeWindowMovingAverages` implementation, the reported `OneMinuteRate`, `FiveMinuteRate` and `FifteenMinuteRate` values are the number of events that occurred during the time window. I would...
Given a source class, ```java public record TestEntity() {} ``` A target class referencing a nested enum, ```java public class EnumHolder { public enum TestEnum { VALUE_1, VALUE_2, } }...
Given a nested enumeration, ```java public class TestEnumHolder { public enum TestEnum { VALUE_1, VALUE_2; } } ``` A source class (record for brievty), ```java public record TestEntity(String testProperty) {}...
Given a generic source class with a member implementing an interface, ```java public interface TestInterface {} public record TestEntity(T data) {} ``` A target class, ```java public record TestDto(String data)...
When the SSL handshake fails with an `OSError`, the producer thread keeps retrying to connect with the same connection resulting in the same error occurring again. The workaround is to...
This moves the `SecurityParser` class responsible for populating `SecurityScheme` models from `SecurityScheme` annotations to the `core` module. The move allows using it without taking a dependency on JAX-RS and to...
At the moment, PEM `SslBundle`s can be instantiated through the following properties: ```yml spring: ssl: bundle: pem: client: truststore: certificate: "classpath:client.crt" ``` Where `client.crt` can contain multiple certificates. In some...
**In what version(s) of Spring for Apache Kafka are you seeing this issue?** 2.8.11 **Describe the bug** With a `MessageListenerContainer` configured with `FixTxOffsets` set to `true`, when all the available...