InputParamters Invalid When Importing a CSAR
lharzenetter opened this issue · 1 comments
lharzenetter commented
After I imported a CSAR, the Node Type definitions are corrput:
<Operation name="configure">
<InputParameters>
<InputParameter name="DBMSUser" type="xsd:string" required="false"/>
<InputParameter name="DBMSPassword" type="xsd:string" required="false"/>
<InputParameter name="DBMSPort" type="xsd:string" required="false"/>
</InputParameters>
</Operation>
required="false"
in this case was even wrong, as it was set to yes
in the CSAR.
The requried flag is a TBoolean and must be either saved as yes
or no
.
mar-be commented
Fixed in winery#606