summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChirag Shah <chirag@nvidia.com>2023-03-15 05:32:40 +0100
committerChirag Shah <chirag@nvidia.com>2023-03-15 05:32:40 +0100
commit1543f58b5541c0ddb5e53bb7994136dcb5f836cb (patch)
tree6bd44340b6ea55bf368ca0b3829d895a495d8f36 /tools
parentMerge pull request #12936 from opensourcerouting/ospf6d-out-filter-list (diff)
downloadfrr-1543f58b5541c0ddb5e53bb7994136dcb5f836cb.tar.xz
frr-1543f58b5541c0ddb5e53bb7994136dcb5f836cb.zip
tools: frr-reload fix list value not present
Check for value present in list before removing as in certain python3 ValueError traceback is observed. Traceback (most recent call last): File "/usr/lib/frr/frr-reload.py", line 2278, in <module> (lines_to_add, lines_to_del, restart_frr) = compare_context_objects(newconf, running) File "/usr/lib/frr/frr-reload.py", line 1933, in compare_context_objects lines_to_add, lines_to_del File "/usr/lib/frr/frr-reload.py", line 1549, in ignore_delete_re_add_lines lines_to_del.remove((ctx_keys, line)) ValueError: list.remove(x): x not in list Ticket:#3389979 Issue:3389979 Testing Done: With fix perform frr-relaod on frr.conf config where earlier traceback was seen. Signed-off-by: Donald Sharp <sharpd@nvidia.com> Signed-off-by: Chirag Shah <chirag@nvidia.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/frr-reload.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py
index a69b0a7bf..490e519ae 100755
--- a/tools/frr-reload.py
+++ b/tools/frr-reload.py
@@ -1474,10 +1474,12 @@ def ignore_delete_re_add_lines(lines_to_add, lines_to_del):
lines_to_add_to_del.append((tmp_ctx_keys, line))
for (ctx_keys, line) in lines_to_del_to_del:
- lines_to_del.remove((ctx_keys, line))
+ if line is not None:
+ lines_to_del.remove((ctx_keys, line))
for (ctx_keys, line) in lines_to_add_to_del:
- lines_to_add.remove((ctx_keys, line))
+ if line is not None:
+ lines_to_add.remove((ctx_keys, line))
return (lines_to_add, lines_to_del)