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 2022/11/02 12:14:43 UTC

[camel-kamelets] 03/05: Create an AWS S3 CDC Source Kamelet

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

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

commit 1918a2ea30f3fb1cb87e89319f349ece146df836
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Nov 2 12:48:01 2022 +0100

    Create an AWS S3 CDC Source Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 script/validator/validator.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/script/validator/validator.go b/script/validator/validator.go
index 30d82161..33ad60c5 100644
--- a/script/validator/validator.go
+++ b/script/validator/validator.go
@@ -410,7 +410,7 @@ func listKamelets(dir string) []KameletInfo {
 
 func verifyUsedParams(kamelets []KameletInfo) (errors []error) {
 	for _, k := range kamelets {
-	        if (k.FileName != "../../kamelets/azure-storage-blob-source.kamelet.yaml") {
+	        if (k.FileName != "../../kamelets/azure-storage-blob-source.kamelet.yaml" && k.FileName != "../../kamelets/aws-s3-cdc-source.kamelet.yaml") {
 		used := getUsedParams(k.Kamelet)
 		declared := getDeclaredParams(k.Kamelet)
 		for p := range used {