This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 1475-5 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 9f0b86eda37613eda8b2123e0b7a182f87b48772 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu May 25 15:14:38 2023 +0200 Bean: Use properties instead of property with key and value - MariaDB Sink Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/mariadb-sink.kamelet.yaml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/kamelets/mariadb-sink.kamelet.yaml b/kamelets/mariadb-sink.kamelet.yaml index 22665090..b759eb5a 100644 --- a/kamelets/mariadb-sink.kamelet.yaml +++ b/kamelets/mariadb-sink.kamelet.yaml @@ -97,15 +97,11 @@ spec: beans: - name: dsBean type: "#class:org.apache.commons.dbcp2.BasicDataSource" - property: - - key: username - value: '{{username}}' - - key: password - value: '{{password}}' - - key: url - value: 'jdbc:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}' - - key: driverClassName - value: 'org.mariadb.jdbc.Driver' + properties: + username: '{{username}}' + password: '{{password}}' + url: 'jdbc:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}' + driverClassName: 'org.mariadb.jdbc.Driver' from: uri: "kamelet:source" steps:
