diff options
author | stark, steven <steven.stark@att.com> | 2020-08-06 09:18:46 -0700 |
---|---|---|
committer | stark, steven <steven.stark@att.com> | 2020-08-06 09:37:21 -0700 |
commit | ba21c2865908523292807bcfc86354ee0a6823f8 (patch) | |
tree | 2694eea7bc02ed7ce75f3efca8362b96572305e8 /onap-client/onap_client/engine.py | |
parent | 32409110b65b013bc65930f3cfdef09671cd3a5a (diff) |
[VVP] Bug fixes
Revert type change on return from spec-engine. This was
changed incorrectly on previous review.
Fixing policy add to VNF, so that properties values are
still added on update.
Issue-ID: VVP-455
Signed-off-by: stark, steven <steven.stark@att.com>
Change-Id: I36ff9479f69893665bd7155b16c3fdcf1302e29e
Diffstat (limited to 'onap-client/onap_client/engine.py')
-rw-r--r-- | onap-client/onap_client/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/onap-client/onap_client/engine.py b/onap-client/onap_client/engine.py index daac47d..37d5b0b 100644 --- a/onap-client/onap_client/engine.py +++ b/onap-client/onap_client/engine.py @@ -211,7 +211,7 @@ class SpecEngine: finished_spec["output"] = t._output() full_engine_spec.append(finished_spec) - return full_engine_spec + return {"spec": full_engine_spec} def resolve_spec(spec_dict): |