NSXV: retrieve DNS IPs from subnet correctly
subnet['dns_nameservers'] is a list of strings, not dictionaries. Change-Id: I929f5ab4d1eb3d538b9e50d08d13554575eab99b
This commit is contained in:
parent
7533a7e8a5
commit
9c189e303b
@ -1032,8 +1032,7 @@ class EdgeManager(object):
|
||||
# Set gateway for static binding
|
||||
static_config['defaultGateway'] = subnet['gateway_ip']
|
||||
# set primary and secondary dns
|
||||
name_servers = [dns['address']
|
||||
for dns in subnet['dns_nameservers']]
|
||||
name_servers = subnet['dns_nameservers']
|
||||
# if no nameservers have been configured then use the ones
|
||||
# defined in the configuration
|
||||
name_servers = name_servers or cfg.CONF.nsxv.nameservers
|
||||
|
Loading…
Reference in New Issue
Block a user