From: Alexis de Talhouët Date: Tue, 16 Jul 2019 21:05:04 +0000 (-0400) Subject: Fix typo in log X-Git-Tag: 0.5.0~69 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=efd052e12f3d7dddd5940426cef3f0f3b047503f;p=ccsdk%2Fcds.git Fix typo in log Change-Id: I50799d9ba80002971c4149c80621fea98fa9184b Issue-ID: CCSDK-1493 Signed-off-by: Alexis de Talhouët --- diff --git a/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRuntimeService.kt b/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRuntimeService.kt index a7ed72dfa..e6f3f71ca 100644 --- a/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRuntimeService.kt +++ b/ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRuntimeService.kt @@ -382,7 +382,7 @@ open class DefaultBluePrintRuntimeService(private var id: String, private var bl val nodeTemplate = bluePrintContext.nodeTemplateByName(nodeTemplateName) return nodeTemplate.artifacts?.get(artifactName) - ?: throw BluePrintProcessorException("failed to get artifat definition($artifactName) from the node " + + ?: throw BluePrintProcessorException("failed to get artifact definition($artifactName) from the node " + "template") }