From: garciadeblas Date: Mon, 20 Jul 2020 07:23:53 +0000 (+0000) Subject: Fix bug 1159: vdu can be empty in a KNF, override option must take it into account X-Git-Tag: v8.0.0rc3~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F70%2F9470%2F2;p=osm%2Fosmclient.git Fix bug 1159: vdu can be empty in a KNF, override option must take it into account Change-Id: I1947d65ab55af825f7aaa90b4fbf2f6e8f5a7a4b Signed-off-by: garciadeblas --- diff --git a/osmclient/sol005/vnfd.py b/osmclient/sol005/vnfd.py index 48fbdb7..ac44495 100644 --- a/osmclient/sol005/vnfd.py +++ b/osmclient/sol005/vnfd.py @@ -204,7 +204,8 @@ class Vnfd(object): for k in vnfd: # Get only the first descriptor in case there are many in the yaml file # k can be vnfd:vnfd-catalog or vnfd-catalog. This check is skipped - vdu_list = vnfd[k]['vnfd'][0]['vdu'] + first_vnfd = vnfd[k]['vnfd'][0] + vdu_list = first_vnfd.get('vdu',[]) break; for vdu_number, vdu in enumerate(vdu_list): if override_epa: