You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2023/10/07 03:23:46 UTC

[camel-quarkus] 18/46: Fixed main-command-mode tests becaise of recent changes of Timer

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 75ade1cab63c710f2d9b8a466ecec61d814abd0f
Author: JiriOndrusek <on...@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 + "}");
     }