Fix legacy call for get_network_pool method

ip_range is used wrong, we need cidr of the network

Change-Id: Ic6acced8228e325ada1090fe218ef7bf9a88bfef
This commit is contained in:
Vladimir Khlyunev 2017-03-10 15:39:23 +04:00
parent 80fd837059
commit 29995868ab
1 changed files with 1 additions and 1 deletions

View File

@ -3496,7 +3496,7 @@ class FuelWebClient30(FuelWebClient29):
net_pool = group.get_network_pool(name=pool_name) net_pool = group.get_network_pool(name=pool_name)
_net_pool = { _net_pool = {
"gateway": net_pool.gateway, "gateway": net_pool.gateway,
"network": net_pool.ip_range "network": net_pool.net
} }
return _net_pool return _net_pool