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

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

commit e288f3c7f0f1e4521eef2e7139e698d0110c5e98
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri May 19 09:37:39 2023 +0200

    Kafka Secured Source Kamelet: use double quote around user and password
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 kamelets/kafka-source.kamelet.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kamelets/kafka-source.kamelet.yaml 
b/kamelets/kafka-source.kamelet.yaml
index 6a914f0f..4d7752fd 100644
--- a/kamelets/kafka-source.kamelet.yaml
+++ b/kamelets/kafka-source.kamelet.yaml
@@ -143,7 +143,7 @@ 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}}";'
         autoCommitEnable: "{{autoCommitEnable}}"
         allowManualCommit: "{{allowManualCommit}}"
         pollOnError: "{{pollOnError}}"

Reply via email to