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

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


The following commit(s) were added to refs/heads/4.8.x by this push:
     new 8b48b6b4 The Kamelet "aws-sqs-source" is invalid (#2335)
8b48b6b4 is described below

commit 8b48b6b486116fc13d2961f45ca033042d682dd5
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Tue Jan 7 10:16:32 2025 +0100

    The Kamelet "aws-sqs-source" is invalid (#2335)
    
    Signed-off-by: Andrea Cosentino <anco...@gmail.com>
---
 kamelets/aws-sqs-source.kamelet.yaml                              | 8 ++++----
 .../src/main/resources/kamelets/aws-sqs-source.kamelet.yaml       | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/kamelets/aws-sqs-source.kamelet.yaml 
b/kamelets/aws-sqs-source.kamelet.yaml
index a9f007be..129002f0 100644
--- a/kamelets/aws-sqs-source.kamelet.yaml
+++ b/kamelets/aws-sqs-source.kamelet.yaml
@@ -152,19 +152,19 @@ spec:
         title: Max Messages Per Poll
         description: The maximum number of messages to return. Amazon SQS 
never returns more messages than this value (however, fewer messages might be 
returned). Valid values 1 to 10. Default 1.
         type: integer
-        minimum: 1
-        maximum: 10
+        minimum: "1"
+        maximum: "10"
         default: 1
       waitTimeSeconds:
         title: Wait Time Seconds
         description: The duration (in seconds) for which the call waits for a 
message to arrive in the queue before returning. If a message is available, the 
call returns sooner than WaitTimeSeconds. If no messages are available and the 
wait time expires, the call does not return a message list.
         type: integer
-        minimum: 0
+        minimum: "0"
       visibilityTimeout:
         title: Visibility Timeout
         description: The duration (in seconds) that the received messages are 
hidden from subsequent retrieve requests after being retrieved by a 
ReceiveMessage request.
         type: integer
-        minimum: 0
+        minimum: "0"
   dataTypes:
     out:
       default: text
diff --git 
a/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml
 
b/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml
index a9f007be..129002f0 100644
--- 
a/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml
+++ 
b/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml
@@ -152,19 +152,19 @@ spec:
         title: Max Messages Per Poll
         description: The maximum number of messages to return. Amazon SQS 
never returns more messages than this value (however, fewer messages might be 
returned). Valid values 1 to 10. Default 1.
         type: integer
-        minimum: 1
-        maximum: 10
+        minimum: "1"
+        maximum: "10"
         default: 1
       waitTimeSeconds:
         title: Wait Time Seconds
         description: The duration (in seconds) for which the call waits for a 
message to arrive in the queue before returning. If a message is available, the 
call returns sooner than WaitTimeSeconds. If no messages are available and the 
wait time expires, the call does not return a message list.
         type: integer
-        minimum: 0
+        minimum: "0"
       visibilityTimeout:
         title: Visibility Timeout
         description: The duration (in seconds) that the received messages are 
hidden from subsequent retrieve requests after being retrieved by a 
ReceiveMessage request.
         type: integer
-        minimum: 0
+        minimum: "0"
   dataTypes:
     out:
       default: text

Reply via email to