Correct README

feature/properties-backwards-compatibility
Manu Zi 2019-07-25 21:52:49 +02:00
parent efa0ecc003
commit 23e0a6b39c
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ public KafkaHealthProperties kafkaHealthProperties() {
@Bean
public KafkaConsumingHealthIndicator kafkaConsumingHealthIndicator(KafkaHealthProperties kafkaProperties,
KafkaProperties processingProperties) {
return new KafkaConsumingHealthIndicator(kafkaHealthProperties, kafkaProperties.buildConsumerProperties(),
kafkaProperties.buildProducerProperties());
return new KafkaConsumingHealthIndicator(kafkaHealthProperties, processingProperties.buildConsumerProperties(),
processingProperties.buildProducerProperties());
}
....