Skip to content

Commit

Permalink
examples: fix route definition
Browse files Browse the repository at this point in the history
  • Loading branch information
lburgazzoli committed Sep 30, 2020
1 parent 92d7ca4 commit b1a78a8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions examples/camel-k-runtime-example-quarkus-yaml/data/routes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@
group: "routes"
from:
uri: "platform-http:/hello"
steps:
- convert-body-to:
type: "java.lang.String"
- to:
uri: "log:info"
steps:
- convert-body-to:
type: "java.lang.String"
- to:
uri: "log:info"
- route:
id: "flow-2"
group: "routes"
from:
uri: "timer:tick"
parameters:
period: "5000"
steps:
- set-body:
simple: "${exchangeProperty.CamelTimerName} -> ${exchangeProperty.CamelTimerCounter}"
- to:
uri: "log:tick"
- log:
message: "{{message}}"
parameters:
period: "5000"
steps:
- set-body:
simple: "${exchangeProperty.CamelTimerName} -> ${exchangeProperty.CamelTimerCounter}"
- to:
uri: "log:tick"
- log:
message: "{{message}}"

0 comments on commit b1a78a8

Please sign in to comment.