You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/10/05 14:00:13 UTC

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

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

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

commit e059e7e4e22dd47177b268a8bdd7d4fb601cac70
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 + "}");
     }