From b1a78a8f82ccfccfd0f0a1db443f5582c57d82a6 Mon Sep 17 00:00:00 2001 From: Luca Burgazzoli Date: Wed, 30 Sep 2020 23:52:03 +0200 Subject: [PATCH] examples: fix route definition --- .../data/routes.yaml | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/examples/camel-k-runtime-example-quarkus-yaml/data/routes.yaml b/examples/camel-k-runtime-example-quarkus-yaml/data/routes.yaml index 287fd748d..8c31c7d86 100644 --- a/examples/camel-k-runtime-example-quarkus-yaml/data/routes.yaml +++ b/examples/camel-k-runtime-example-quarkus-yaml/data/routes.yaml @@ -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}}" \ No newline at end of file + parameters: + period: "5000" + steps: + - set-body: + simple: "${exchangeProperty.CamelTimerName} -> ${exchangeProperty.CamelTimerCounter}" + - to: + uri: "log:tick" + - log: + message: "{{message}}"