Fix can_update test in os_subnet (#3664)
This commit is contained in:
parent
5fc7bc45ac
commit
2f2f80ad4c
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ def _can_update(subnet, module, cloud):
|
||||||
subnet')
|
subnet')
|
||||||
if ip_version and subnet['ip_version'] != ip_version:
|
if ip_version and subnet['ip_version'] != ip_version:
|
||||||
module.fail_json(msg='Cannot update ip_version in existing subnet')
|
module.fail_json(msg='Cannot update ip_version in existing subnet')
|
||||||
if ipv6_ra_mode and subnet.get('ipv6_ra_mode', None) != ip_version:
|
if ipv6_ra_mode and subnet.get('ipv6_ra_mode', None) != ipv6_ra_mode:
|
||||||
module.fail_json(msg='Cannot update ipv6_ra_mode in existing subnet')
|
module.fail_json(msg='Cannot update ipv6_ra_mode in existing subnet')
|
||||||
if ipv6_a_mode and subnet.get('ipv6_address_mode', None) != ipv6_a_mode:
|
if ipv6_a_mode and subnet.get('ipv6_address_mode', None) != ipv6_a_mode:
|
||||||
module.fail_json(msg='Cannot update ipv6_address_mode in existing \
|
module.fail_json(msg='Cannot update ipv6_address_mode in existing \
|
||||||
|
|
Loading…
Add table
Reference in a new issue