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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-jbang-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 3cb1194  chore: sql example - Set 5s period between select queries
3cb1194 is described below

commit 3cb1194ea78d99e3883bdaa61c00d59323fedcc5
Author: Claus Ibsen <[email protected]>
AuthorDate: Sun Jun 28 21:00:40 2026 +0200

    chore: sql example - Set 5s period between select queries
    
    The timer had delay=5000 (initial wait) but period defaulted to 1000ms
    (1 second between queries). Set period=5000 to match the intent.
    
    Co-Authored-By: Claude <[email protected]>
    Signed-off-by: Claus Ibsen <[email protected]>
---
 sql/sql.camel.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sql/sql.camel.yaml b/sql/sql.camel.yaml
index 3153d25..34d02a5 100644
--- a/sql/sql.camel.yaml
+++ b/sql/sql.camel.yaml
@@ -29,7 +29,7 @@
       uri: timer
       parameters:
         timerName: select
-        delay: 5000
+        period: 5000
       steps:
         - to:
             uri: sql

Reply via email to