Merge "Fix logic in routers_info"

This commit is contained in:
Zuul 2022-04-12 19:38:10 +00:00 committed by Gerrit Code Review
commit 411c2ddc8c
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ class RouterInfoModule(OpenStackModule):
'ip_address': ip_spec.get('ip_address'),
'subnet_id': ip_spec.get('subnet_id')
}
interfaces_info.append(int_info)
interfaces_info.append(int_info)
router['interfaces_info'] = interfaces_info
self.exit(changed=False, openstack_routers=routers)