Skip to content

Commit

Permalink
Use default timer delay for main-unknown-args itest application
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Jul 22, 2021
1 parent 855e26f commit b5602f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Routes extends RouteBuilder {

@Override
public void configure() throws Exception {
from("timer:tick?repeatCount=1&delay=-1")
from("timer:tick?repeatCount=1")
.log("Timer tick!");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Routes extends RouteBuilder {

@Override
public void configure() throws Exception {
from("timer:tick?repeatCount=1&delay=-1")
from("timer:tick?repeatCount=1")
.log("Timer tick!");
}
}

0 comments on commit b5602f7

Please sign in to comment.