From cf253202ee98f285720c18d5c7bae382ea900934 Mon Sep 17 00:00:00 2001 From: Adam Israel Date: Wed, 31 Oct 2018 16:29:09 -0700 Subject: [PATCH] bug 563: Return initial-config-primitive uuids Fixes bug #563, by returning the uuids of the executed initial-config-primitives when calling DeployCharms. Signed-off-by: Adam Israel Change-Id: I5c5735618a3b0ab91a1f461e367ecae1fa177f21 --- n2vc/vnf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/n2vc/vnf.py b/n2vc/vnf.py index f2d0a1e..4427c9b 100644 --- a/n2vc/vnf.py +++ b/n2vc/vnf.py @@ -494,11 +494,12 @@ class N2VC: # ####################################### # # Execute initial config primitive(s) # # ####################################### - await self.ExecuteInitialPrimitives( + uuids = await self.ExecuteInitialPrimitives( model_name, application_name, params, ) + return uuids # primitives = {} # -- 2.17.1