Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ public void configure() throws Exception {
.end();

from("direct:cancelOrder")
.log("Transaction ${header.Long-Running-Action} has been cancelled due to flight or train failure");
.log("Transaction ${header.Long-Running-Action} has been cancelled due to flight or train failure")
.end();

}

Expand Down
1 change: 1 addition & 0 deletions timer-log/src/main/java/org/acme/timer/log/TimerRoute.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class TimerRoute extends RouteBuilder {

@Override
public void configure() throws Exception {

from("timer:foo?period={{timer.period}}")
.bean("greeting", "greet")
.to("log:timer");
Expand Down