This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit d54b6f5923bf8518627c133b0d87b749e3c03e19 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri May 6 11:01:49 2022 +0200 aws-* kamelets: expose delay parameter where possible - AWS Redshift --- kamelets/aws-redshift-source.kamelet.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kamelets/aws-redshift-source.kamelet.yaml b/kamelets/aws-redshift-source.kamelet.yaml index 78d4b1f2..9bb86db7 100644 --- a/kamelets/aws-redshift-source.kamelet.yaml +++ b/kamelets/aws-redshift-source.kamelet.yaml @@ -77,6 +77,11 @@ spec: description: A query to run on a tuple consumed type: string example: 'DELETE FROM accounts where user_id = :#user_id' + delay: + title: Delay + description: Milliseconds before the next poll from database + type: long + default: 500 types: out: mediaType: application/json @@ -104,6 +109,7 @@ spec: parameters: dataSource: "#bean:{{dsBean}}" onConsume: "{{?consumedQuery}}" + delay: "{{delay}}" steps: - marshal: json:
