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 2024/03/07 08:42:00 UTC

(camel-kamelets) 07/11: CDC Storage Source Kamelets, rename to -event-based instead of cdc - Azure Storage Blob

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

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

commit 4330aec3f28e8302030881d7e71199fa77872dd2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 7 09:30:02 2024 +0100

    CDC Storage Source Kamelets, rename to -event-based instead of cdc - Azure Storage Blob
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 docs/modules/ROOT/nav.adoc    | 2 +-
 script/validator/validator.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
index f8b9aadd..d5baa3fa 100644
--- a/docs/modules/ROOT/nav.adoc
+++ b/docs/modules/ROOT/nav.adoc
@@ -37,8 +37,8 @@
 * xref:azure-servicebus-sink.adoc[]
 * xref:azure-servicebus-source.adoc[]
 * xref:azure-storage-blob-append-sink.adoc[]
-* xref:azure-storage-blob-cdc-source.adoc[]
 * xref:azure-storage-blob-changefeed-source.adoc[]
+* xref:azure-storage-blob-event-based-source.adoc[]
 * xref:azure-storage-blob-sink.adoc[]
 * xref:azure-storage-blob-source.adoc[]
 * xref:azure-storage-datalake-sink.adoc[]
diff --git a/script/validator/validator.go b/script/validator/validator.go
index 2dc9a3f0..7ee64bd3 100644
--- a/script/validator/validator.go
+++ b/script/validator/validator.go
@@ -378,7 +378,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" && k.FileName != "../../kamelets/aws-s3-event-based-source.kamelet.yaml" && k.FileName != "../../kamelets/set-kafka-key-action.kamelet.yaml" && k.FileName != "../../kamelets/azure-storage-blob-cdc-source.kamelet.yaml" && k.FileName != "../../kamelets/google-storage-cdc-source.kamelet.yaml" && k.FileName != "../../kamelets/elasticsearch-search-source.kamelet.yaml" && k.FileName != "../../kamelets/opensearch-search- [...]
+		if k.FileName != "../../kamelets/azure-storage-blob-source.kamelet.yaml" && k.FileName != "../../kamelets/aws-s3-event-based-source.kamelet.yaml" && k.FileName != "../../kamelets/set-kafka-key-action.kamelet.yaml" && k.FileName != "../../kamelets/azure-storage-blob-event-based-source.kamelet.yaml" && k.FileName != "../../kamelets/google-storage-cdc-source.kamelet.yaml" && k.FileName != "../../kamelets/elasticsearch-search-source.kamelet.yaml" && k.FileName != "../../kamelets/opensearch [...]
 			used := getUsedParams(k.Kamelet)
 			declared := getDeclaredParams(k.Kamelet)
 			for p := range used {