bgp: Gracefully handle missing last_known_router_id
When a server is deleted before its floating IP has been disassociated, the notification doens't contain a `last_known_router_id` key, which results in a `KeyError` exception being thrown. This commit gracefully handles this situation by setting `last_router_id` to `None` when `last_known_router_id` is missing. Change-Id: If127a33cec7ce6c4d264a191df37c30decab4daa Closes-Bug: #1795816
This commit is contained in:
parent
a32c6f8c23
commit
4780fe548b
@ -230,7 +230,7 @@ class BgpPlugin(service_base.ServicePluginBase,
|
|||||||
|
|
||||||
ctx = context.get_admin_context()
|
ctx = context.get_admin_context()
|
||||||
new_router_id = kwargs['router_id']
|
new_router_id = kwargs['router_id']
|
||||||
last_router_id = kwargs['last_known_router_id']
|
last_router_id = kwargs.get('last_known_router_id')
|
||||||
floating_ip_address = kwargs['floating_ip_address']
|
floating_ip_address = kwargs['floating_ip_address']
|
||||||
dest = floating_ip_address + '/32'
|
dest = floating_ip_address + '/32'
|
||||||
bgp_speakers = self._bgp_speakers_for_gw_network_by_family(
|
bgp_speakers = self._bgp_speakers_for_gw_network_by_family(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user