You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/05/19 08:01:19 UTC

[camel-kamelets] 03/05: Kafka Secured Sink Kamelet: use double quote around user and password

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch 3.20.x-1476
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 936b26343f4dbeb524f52094a0c2473e7b0256dc
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri May 19 09:40:21 2023 +0200

    Kafka Secured Sink Kamelet: use double quote around user and password
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/kafka-sink.kamelet.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kamelets/kafka-sink.kamelet.yaml b/kamelets/kafka-sink.kamelet.yaml
index 22e49193..625454c5 100644
--- a/kamelets/kafka-sink.kamelet.yaml
+++ b/kamelets/kafka-sink.kamelet.yaml
@@ -117,4 +117,4 @@ spec:
             brokers: "{{bootstrapServers}}"
             securityProtocol: "{{securityProtocol}}"
             saslMechanism: "{{saslMechanism}}"
-            saslJaasConfig: "org.apache.kafka.common.security.plain.PlainLoginModule required username='{{user}}' password='{{password}}';"
+            saslJaasConfig: 'org.apache.kafka.common.security.plain.PlainLoginModule required username="{{user}}" password="{{password}}";'