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 5f1f90e77b1e87041ff1ec560364f22e9b6634a3 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 + "}"); }