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
When upgrading to Spring Boot 3.5.0 I noticed that the SSL Bundle information is no longer propagated to the properties. In the previous version there was a method buildPropertiesForSslBundle in class KafkaProperties#Ssl while in version 3.5.0 the newly instantiated Properties object is immediately returned. See screenshots below. Going though the code I see no other way how the SSL Bundles are used for setting the configuration.
Activity
wilkinsona commentedon Jun 17, 2025
They're now applied by
KafkaAutoConfiguration
. This was changed in dae891f for Boot 3.5.pnederlof commentedon Jun 17, 2025
My bad, thanks for the quick answer and clarification