Skip to content

Commit f4f857e

Browse files
authored
[GCU] Ignore bgpraw in GCU applier (#2623)
What I did show run all output will include bgpraw for business needs. GCU ipv6 test will update BGP_NEIGHBOR table which caused bgpraw content change, which will make the apply-patch operation fail. The solution is to add bgpraw to ignored tables. How I did it Add new added bgpraw table to ignored backend table. How to verify it Existing Unit test and local E2E GCU test.
1 parent b5ac600 commit f4f857e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

generic_config_updater/change_applier.py

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ class ChangeApplier:
7676
def __init__(self):
7777
self.config_db = get_config_db()
7878
self.backend_tables = [
79+
"bgpraw",
7980
"BUFFER_PG",
8081
"BUFFER_PROFILE",
8182
"FLEX_COUNTER_TABLE"

0 commit comments

Comments
 (0)