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

github-bot pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit daea7f80b6026e5b93f1d9f2155aff4638536548
Author: JiriOndrusek <ondrusek.j...@gmail.com>
AuthorDate: Tue Sep 5 10:20:20 2023 +0200

    Fixed main-command-mode tests becaise of recent changes of Timer
---
 .../src/main/java/org/apache/camel/quarkus/main/cmd/CamelRoute.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/integration-tests/main-command-mode/src/main/java/org/apache/camel/quarkus/main/cmd/CamelRoute.java
 
b/integration-tests/main-command-mode/src/main/java/org/apache/camel/quarkus/main/cmd/CamelRoute.java
index a29a95d306..e159405e99 100644
--- 
a/integration-tests/main-command-mode/src/main/java/org/apache/camel/quarkus/main/cmd/CamelRoute.java
+++ 
b/integration-tests/main-command-mode/src/main/java/org/apache/camel/quarkus/main/cmd/CamelRoute.java
@@ -29,7 +29,7 @@ public class CamelRoute extends RouteBuilder {
 
     @Override
     public void configure() {
-        from("timer:hello?delay=-1&repeatCount=3")
+        from("timer:hello?delay=-1&repeatCount=3&includeMetadata=true")
                 .setBody().constant("Hello " + greetedSubject + "!")
                 .log("Logging ${body} - from timer named ${headers." + 
Exchange.TIMER_NAME + "}");
     }

Reply via email to