Fix typo in log 65/91565/2
authorAlexis de Talhouët <adetalhouet89@gmail.com>
Tue, 16 Jul 2019 21:05:04 +0000 (17:05 -0400)
committerAlexis de Talhouët <adetalhouet89@gmail.com>
Tue, 16 Jul 2019 21:13:42 +0000 (21:13 +0000)
Change-Id: I50799d9ba80002971c4149c80621fea98fa9184b
Issue-ID: CCSDK-1493
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
ms/controllerblueprints/modules/blueprint-core/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRuntimeService.kt

index a7ed72d..e6f3f71 100644 (file)
@@ -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")
 
     }