This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 3.x-1476 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit b767d8a8442c55e6654cd976f04011195cb45ba1 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri May 19 09:42:34 2023 +0200 Kafka Scram Secured Source Kamelet: use double quote around user and password Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/kafka-scram-source.kamelet.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kamelets/kafka-scram-source.kamelet.yaml b/kamelets/kafka-scram-source.kamelet.yaml index ab39fea2..00e158fb 100644 --- a/kamelets/kafka-scram-source.kamelet.yaml +++ b/kamelets/kafka-scram-source.kamelet.yaml @@ -143,7 +143,7 @@ spec: brokers: "{{?bootstrapServers}}" securityProtocol: "{{securityProtocol}}" saslMechanism: "{{saslMechanism}}" - saslJaasConfig: "org.apache.kafka.common.security.scram.ScramLoginModule required username='{{user}}' password='{{password}}';" + saslJaasConfig: 'org.apache.kafka.common.security.scram.ScramLoginModule required username="{{user}}" password="{{password}}";' autoCommitEnable: "{{autoCommitEnable}}" allowManualCommit: "{{allowManualCommit}}" pollOnError: "{{pollOnError}}"
