This is an automated email from the ASF dual-hosted git repository.
ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push:
new 9a933a5 Fixup #1448 Add delay=-1&repeatCount=1 to the command mode
test route to finish faster
9a933a5 is described below
commit 9a933a5f9cfe12c5e425d8e416615ec926028233
Author: Peter Palaga <[email protected]>
AuthorDate: Wed Jul 15 12:25:40 2020 +0200
Fixup #1448 Add delay=-1&repeatCount=1 to the command mode test route to
finish faster
---
.../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 b0d6df4..9ac5cb6 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")
+ from("timer:hello?delay=-1&repeatCount=1")
.setBody().constant("Hello " + greetedSubject + "!")
.to("log:hello");
}