Skip to content

Remove buildConsumerProperties(SslBundles) from KafkaProperties #45722

Closed as not planned
@Renboo

Description

@Renboo

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 anothertype: taskA general task

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions