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

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git

commit e9045dc15d091d10c725725cd60af441619105cb
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Mon May 25 11:57:13 2020 +0200

    Update MyCamelRouter.java
---
 camel-example-spring-boot/src/main/java/sample/camel/MyCamelRouter.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/camel-example-spring-boot/src/main/java/sample/camel/MyCamelRouter.java 
b/camel-example-spring-boot/src/main/java/sample/camel/MyCamelRouter.java
index c7c1bcb..bc8dc22 100644
--- a/camel-example-spring-boot/src/main/java/sample/camel/MyCamelRouter.java
+++ b/camel-example-spring-boot/src/main/java/sample/camel/MyCamelRouter.java
@@ -29,7 +29,7 @@ public class MyCamelRouter extends RouteBuilder {
 
     @Override
     public void configure() throws Exception {
-        
from("timer:hello?period={{timer.period}}").routeId("hello").routeGroup("hello-group")
+        from("timer:hello?period={{timer.period}}").routeId("hello")
                 .transform().method("myBean", "saySomething")
                 .filter(simple("${body} contains 'foo'"))
                     .to("log:foo")

Reply via email to