This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 1475-4 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 32304aa92784498b29c9b879c3a08f76cfe06e4e Author: Andrea Cosentino <[email protected]> AuthorDate: Thu May 25 14:37:52 2023 +0200 Bean: Use properties instead of property with key and value - Kafka SSL Source Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/kafka-ssl-source.kamelet.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kamelets/kafka-ssl-source.kamelet.yaml b/kamelets/kafka-ssl-source.kamelet.yaml index 8d9e5172..f486700d 100644 --- a/kamelets/kafka-ssl-source.kamelet.yaml +++ b/kamelets/kafka-ssl-source.kamelet.yaml @@ -154,7 +154,7 @@ spec: beans: - name: kafka-ssl-source-local type: '#class:org.apache.camel.component.kafka.KafkaComponent' - - name: kafka-ssl-sink-configuration-local + - name: kafka-ssl-source-configuration-local properties: brokers: '{{bootstrapServers}}' securityProtocol: '{{securityProtocol}}' @@ -180,7 +180,7 @@ spec: from: uri: "{{kafka-ssl-source-local}}:{{topic}}" parameters: - configuration: '#bean:{{kafka-ssl-sink-configuration-local}}' + configuration: '#bean:{{kafka-ssl-source-configuration-local}}' steps: - process: ref: "{{kafkaHeaderDeserializer}}"
