You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2021/01/22 08:41:51 UTC

[camel-k] branch master updated: chore(examples): kamelets properties fix

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

astefanutti pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new 89cff8e  chore(examples): kamelets properties fix
89cff8e is described below

commit 89cff8e893a6fb75c5ea57bc928f7f8c0cdf06c4
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Thu Jan 21 09:37:38 2021 +0100

    chore(examples): kamelets properties fix
---
 examples/kamelets/timer-source-log-sink/timer-source.kamelet.yaml | 2 +-
 examples/kamelets/timer-source/timer-source.kamelet.yaml          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/kamelets/timer-source-log-sink/timer-source.kamelet.yaml b/examples/kamelets/timer-source-log-sink/timer-source.kamelet.yaml
index 47a6393..20e1d66 100644
--- a/examples/kamelets/timer-source-log-sink/timer-source.kamelet.yaml
+++ b/examples/kamelets/timer-source-log-sink/timer-source.kamelet.yaml
@@ -47,7 +47,7 @@ spec:
     from:
       uri: timer:tick
       parameters:
-        period: "#property:period"
+        period: "{{period}}"
       steps:
       - set-body:
           constant: "{{message}}"
diff --git a/examples/kamelets/timer-source/timer-source.kamelet.yaml b/examples/kamelets/timer-source/timer-source.kamelet.yaml
index 4fe90ab..f837fb5 100644
--- a/examples/kamelets/timer-source/timer-source.kamelet.yaml
+++ b/examples/kamelets/timer-source/timer-source.kamelet.yaml
@@ -47,7 +47,7 @@ spec:
     from:
       uri: timer:tick
       parameters:
-        period: "#property:period"
+        period: "{{period}}"
       steps:
       - set-body:
           constant: "{{message}}"