This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7ab5585409835fed0a9be34f2e55533237011d7e Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Aug 4 15:55:33 2021 +0200 CAMEL-16788: route templates (aka kamelets) should always use local parameter value if present, instead of picking up ENV variable that may have a naming clash when using host, port, as names. --- .../modules/ROOT/pages/camel-3x-upgrade-guide-3_12.adoc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_12.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_12.adoc index 88c89e9..ae1e14d 100644 --- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_12.adoc +++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_12.adoc @@ -34,4 +34,9 @@ The `camel-yaml` data format has renamed the option `unmarshalTypeName` to `unma === camel-spark -The `camel-spark` component has been upgraded from Spark 2.x to 3.x. \ No newline at end of file +The `camel-spark` component has been upgraded from Spark 2.x to 3.x. + +=== camel-kamelet / route templates + +Kamelet parameters that are named such as `host`, `port` are now always used with their configured value. +Before the value in use may be from an ENV variable with the same name.