mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 00:18:53 +00:00
quagga reload failure (Tested on VX)
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com> Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com> Ticket: CM-10974 ctx_keys needs to be a tuple and not a list but there was one spot where I created a tmp copy of the ctx_keys but failed to convert it to tuple
This commit is contained in:
parent
4ac8232115
commit
b1e0634c96
@ -487,7 +487,7 @@ def ignore_delete_re_add_lines(lines_to_add, lines_to_del):
|
||||
swpx_peergroup = "neighbor %s peer-group %s" % (swpx, peergroup)
|
||||
found_add_swpx_interface = line_exist(lines_to_add, ctx_keys, swpx_interface)
|
||||
found_add_swpx_peergroup = line_exist(lines_to_add, ctx_keys, swpx_peergroup)
|
||||
tmp_ctx_keys = list(ctx_keys)
|
||||
tmp_ctx_keys = tuple(list(ctx_keys))
|
||||
|
||||
if not found_add_swpx_peergroup:
|
||||
tmp_ctx_keys = list(ctx_keys)
|
||||
|
Loading…
Reference in New Issue
Block a user