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-spring-boot-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 9fda146  Polished
9fda146 is described below

commit 9fda1466bc39492fe718ae22f9ae59ab4bcc97f8
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Aug 12 19:09:44 2025 +0200

    Polished
---
 kamelet-chucknorris/src/main/java/sample/camel/MyRoute.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelet-chucknorris/src/main/java/sample/camel/MyRoute.java 
b/kamelet-chucknorris/src/main/java/sample/camel/MyRoute.java
index 8258444..10e56fe 100644
--- a/kamelet-chucknorris/src/main/java/sample/camel/MyRoute.java
+++ b/kamelet-chucknorris/src/main/java/sample/camel/MyRoute.java
@@ -28,6 +28,7 @@ public class MyRoute extends RouteBuilder {
     @Override
     public void configure() throws Exception {
         from("kamelet:chuck-norris-source")
-                .log("${body}");
+            .delay(500)
+            .log("${body}");
     }
 }

Reply via email to