Fix bug related to scaling: renamed vim_actions to vim_wim_actions 40/7040/1
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Wed, 5 Dec 2018 09:59:40 +0000 (10:59 +0100)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Wed, 5 Dec 2018 09:59:40 +0000 (10:59 +0100)
Change-Id: I6d5644fcd25e72083fb1af2ea01091d963bc11fc
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
osm_ro/nfvo.py

index 7b8a820..b0896ff 100644 (file)
@@ -4507,7 +4507,7 @@ def instance_action(mydb,nfvo_tenant,instance_id, action_dict):
                 iface2iface = {}
                 where = {"item": "instance_vms", "item_id": target_vm["uuid"], "action": "CREATE"}
 
-                vim_action_to_clone = mydb.get_rows(FROM="vim_actions", WHERE=where)
+                vim_action_to_clone = mydb.get_rows(FROM="vim_wim_actions", WHERE=where)
                 if not vim_action_to_clone:
                     raise NfvoException("Cannot find the vim_action at database with {}".format(where), httperrors.Internal_Server_Error)
                 vim_action_to_clone = vim_action_to_clone[0]