You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ts...@apache.org on 2022/08/22 03:29:48 UTC

[camel-k-examples] 03/10: fix: add missing quotes

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

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

commit 51c83085341b1ff89a8069992176ba3cc92c5b68
Author: Kuthumi Pepple <ku...@gmail.com>
AuthorDate: Thu Aug 18 11:53:36 2022 +0100

    fix: add missing quotes
---
 generic-examples/kamelets/error-handler/error-handler.kamelet.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/generic-examples/kamelets/error-handler/error-handler.kamelet.yaml b/generic-examples/kamelets/error-handler/error-handler.kamelet.yaml
index 857a208..ee7515d 100644
--- a/generic-examples/kamelets/error-handler/error-handler.kamelet.yaml
+++ b/generic-examples/kamelets/error-handler/error-handler.kamelet.yaml
@@ -66,7 +66,7 @@ spec:
             brokers: "{{kafka-brokers}}"
             security-protocol: SASL_SSL
             sasl-mechanism: PLAIN
-            sasl-jaas-config: "org.apache.kafka.common.security.plain.PlainLoginModule required username={{kafka-service-account-id}} password={{kafka-service-account-secret}};"
+            sasl-jaas-config: "org.apache.kafka.common.security.plain.PlainLoginModule required username='{{kafka-service-account-id}}' password='{{kafka-service-account-secret}}';"
       # Log an error message to notify about the failure
       - set-body:
           constant: "{{log-message}} - worry not, the event is stored in the DLC"