From: kuldipr Date: Tue, 17 May 2022 14:30:34 +0000 (-0400) Subject: Fix inconsistency introduced during commit b4cbb0ee9 X-Git-Tag: 1.4.0~18 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=63d2c4f29b4a39084d314d446cf7009cd076a921;p=ccsdk%2Fcds.git Fix inconsistency introduced during commit b4cbb0ee9 Issue-ID: CCSDK-3738 Signed-off-by: kuldipr Change-Id: I72ae642f3027fa3b4c8caa3105b2147ed654c159 --- diff --git a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt index a5fcd322c..97fa7365f 100644 --- a/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt +++ b/ms/blueprintsprocessor/modules/inbounds/designer-api/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/designer/api/handler/BluePrintModelHandler.kt @@ -160,7 +160,7 @@ open class BluePrintModelHandler( if (workFlow.inputs != null) { for ((k, v) in workFlow.inputs!!) { - addPropertyInfo(v, blueprintContext, wfRes) + addPropertyInfo(k, v, blueprintContext, wfRes) } } @@ -174,13 +174,6 @@ open class BluePrintModelHandler( return wfRes } - private fun addPropertyInfo(prop: PropertyDefinition, ctx: BluePrintContext, res: WorkFlowSpecResponse) { - addDataType(prop.type, ctx, res) - if (prop.entrySchema != null && prop.entrySchema!!.type != null) { - addDataType(prop.entrySchema!!.type, ctx, res) - } - } - private fun addPropertyInfo(propName: String, prop: PropertyDefinition, ctx: BluePrintContext, res: WorkFlowSpecResponse) { updatePropertyInfo(propName, prop, ctx, res) addDataType(prop.type, ctx, res)