-
Notifications
You must be signed in to change notification settings - Fork 41.4k
Closed as not planned
Labels
status: supersededAn issue that has been superseded by anotherAn issue that has been superseded by anothertype: taskA general taskA general task
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?
Metadata
Metadata
Assignees
Labels
status: supersededAn issue that has been superseded by anotherAn issue that has been superseded by anothertype: taskA general taskA general task