Closed as not planned
Description
Spring boot 3.5.0
I found that KafkaProperties.java lost this part:
private Map<String, Object> buildPropertiesForSslBundle(SslBundles sslBundles, String name) {
Properties properties = new Properties();
properties.in(SslConfigs.SSL_ENGINE_FACTORY_CLASS_CONFIG).accept(SslBundleSslEngineFactory.class);
properties.in(SslBundle.class.getName()).accept(sslBundles.getBundle(name));
return properties;
}
And after this logged consumer config values will contain
ssl.engine.factory.class = null
and SSL Handshake exception.
In previous 3.4.x all work greate.
To understand the whole story I use buildConsumerProperties(sslBundles) method to create Kafkfa config.
Is it bug or feature?