Merge "Fix deletion of subnet_id from pd_subnets" into stable/rocky

This commit is contained in:
Zuul 2020-08-28 09:40:32 +00:00 committed by Gerrit Code Review
commit c0c4468c25
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ class RouterInfo(object):
for subnet in p['subnets']:
if ipv6_utils.is_ipv6_pd_enabled(subnet):
self.agent.pd.disable_subnet(self.router_id, subnet['id'])
del self.pd_subnets[subnet['id']]
self.pd_subnets.pop(subnet['id'], None)
for p in new_ports:
self.internal_network_added(p)