This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch infinispan-source-fixes in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 732f9acd86ddc77c7d26fdd47971db8d06a7e4ed Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Nov 23 13:47:31 2021 +0100 Infinispan Source Kamelet: Add better description for Event Types and default value --- .../src/main/resources/kamelets/infinispan-source.kamelet.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/library/camel-kamelets/src/main/resources/kamelets/infinispan-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/infinispan-source.kamelet.yaml index 7fd38ba..b0874f5 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/infinispan-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/infinispan-source.kamelet.yaml @@ -77,8 +77,10 @@ spec: default: "infinispan" eventTypes: title: Infinispan Cluster Name - description: Specifies the set of event types to register by the consumer.Multiple event can be separated by comma. The possible event types are CLIENT_CACHE_ENTRY_CREATED, CLIENT_CACHE_ENTRY_MODIFIED, CLIENT_CACHE_ENTRY_REMOVED, CLIENT_CACHE_ENTRY_EXPIRED, CLIENT_CACHE_FAILOVER + description: Specifies the set of event types to register by the consumer. Multiple event can be separated by comma without spaces. The possible event types are CLIENT_CACHE_ENTRY_CREATED, CLIENT_CACHE_ENTRY_MODIFIED, CLIENT_CACHE_ENTRY_REMOVED, CLIENT_CACHE_ENTRY_EXPIRED, CLIENT_CACHE_FAILOVER type: string + example: "CLIENT_CACHE_ENTRY_CREATED,CLIENT_CACHE_ENTRY_MODIFIED" + default: "CLIENT_CACHE_ENTRY_CREATED,CLIENT_CACHE_ENTRY_MODIFIED,CLIENT_CACHE_ENTRY_REMOVED,CLIENT_CACHE_ENTRY_EXPIRED,CLIENT_CACHE_FAILOVER" dependencies: - "camel:kamelet" - "camel:core"
