Commit 78002fec authored by Spiros Koulouzis's avatar Spiros Koulouzis

fixed bug: we where not get the largest VM for multicast

parent af9d245f
...@@ -41,7 +41,7 @@ class DumpPlanner: ...@@ -41,7 +41,7 @@ class DumpPlanner:
return self.yaml_dict_tpl['topology_template']['node_templates'] return self.yaml_dict_tpl['topology_template']['node_templates']
def get_network_templates(self): def get_network_templates(self):
if 'network_templates' in self.yaml_dict_tpl: if 'network_templates' in self.yaml_dict_tpl['topology_template']:
return self.yaml_dict_tpl['topology_template']['network_templates'] return self.yaml_dict_tpl['topology_template']['network_templates']
else: else:
return None return None
...@@ -102,7 +102,6 @@ class DumpPlanner: ...@@ -102,7 +102,6 @@ class DumpPlanner:
def plan(self,max_vms): def plan(self,max_vms):
network_templates = self.get_network_templates() network_templates = self.get_network_templates()
vms = [] vms = []
print network_templates
if network_templates and network_templates['network'] and network_templates['network']['multicast'] == True: if network_templates and network_templates['network'] and network_templates['network']['multicast'] == True:
vm = {} vm = {}
vm['name'] = 'id' vm['name'] = 'id'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment