Conversation
… output in the correct type (boolean/number)
|
🌟 Thank you for your contribution to the Apache Camel project! 🌟 🤖 CI automation will test this PR automatically. 🐫 Apache Camel Committers, please review the following items:
|
|
@lordrip here is a PR where the defaultValue is according to the type |
In Camel 4.15, the `default` values are written in `string`, regardless of its type. For instance, this is how the `scriptPropertyPlaceholders` property is defined, notice the `default: "true"` portion.
```
"scriptPropertyPlaceholders" : {
"type" : "boolean",
"title" : "Script Property Placeholders",
"description" : "Whether the script should support using Camel property placeholder syntax {{ }}.",
"default" : "true"
},
```
This commit fixes this issue at the Entity and Pattern level by
adjusting the default value to its right type.
A fix for this was provided in Camel upstream here: apache/camel#19753
In Camel 4.15, the `default` values are written in `string`, regardless of its type. For instance, this is how the `scriptPropertyPlaceholders` property is defined, notice the `default: "true"` portion.
```
"scriptPropertyPlaceholders" : {
"type" : "boolean",
"title" : "Script Property Placeholders",
"description" : "Whether the script should support using Camel property placeholder syntax {{ }}.",
"default" : "true"
},
```
This commit fixes this issue at the Entity and Pattern level by
adjusting the default value to its right type.
A fix for this was provided in Camel upstream here: apache/camel#19753
In Camel 4.15, the `default` values are written in `string`, regardless of its type. For instance, this is how the `scriptPropertyPlaceholders` property is defined, notice the `default: "true"` portion.
```
"scriptPropertyPlaceholders" : {
"type" : "boolean",
"title" : "Script Property Placeholders",
"description" : "Whether the script should support using Camel property placeholder syntax {{ }}.",
"default" : "true"
},
```
This commit fixes this issue at the Entity and Pattern level by
adjusting the default value to its right type.
A fix for this was provided in Camel upstream here: apache/camel#19753
… output in the correct type (boolean/number)
Description
Target
mainbranch)Tracking
Apache Camel coding standards and style
mvn clean install -DskipTestslocally from root folder and I have committed all auto-generated changes.