Minor bug fixed in create_or_use_flavor when it contains a disk image 83/483/2
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Tue, 4 Oct 2016 07:09:58 +0000 (09:09 +0200)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Tue, 4 Oct 2016 07:39:57 +0000 (09:39 +0200)
Change-Id: I43dd1b4e822330908a46c8adf93ce26934000ad5
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
nfvo.py

diff --git a/nfvo.py b/nfvo.py
index e803206..2998c38 100644 (file)
--- a/nfvo.py
+++ b/nfvo.py
@@ -344,7 +344,7 @@ def create_or_use_flavor(mydb, vims, flavor_dict, rollback_list, only_create_at_
             if 'extended' in flavor_dict and flavor_dict['extended']!=None:
                 dev_nb=0
                 for device in flavor_dict['extended'].get('devices',[]):
-                    if "image" not in device or "image name" not in device:
+                    if "image" not in device and "image name" not in device:
                         continue
                     image_dict={}
                     image_dict['name']=device.get('image name',flavor_dict['name']+str(dev_nb)+"-img")