Merge pull request #7755 from sivel/rax-asg-normalize-nic

module rax_scaling_group: safe normalization of nics
pull/7793/head
James Cammarata 11 years ago
commit b7a5ce37a4

@ -215,8 +215,12 @@ def rax_asg(module, cooldown=300, disk_config=None, files={}, flavor=None,
nics.extend(cnw.get_server_networks(network)) nics.extend(cnw.get_server_networks(network))
for nic in nics: for nic in nics:
nic.update(uuid=nic['net-id']) # pyrax is currently returning net-id, but we need uuid
del nic['net-id'] # this check makes this forward compatible for a time when
# pyrax uses uuid instead
if nic.get('net-id'):
nic.update(uuid=nic['net-id'])
del nic['net-id']
# Handle the file contents # Handle the file contents
personality = [] personality = []

Loading…
Cancel
Save