Skip to content

Commit

Permalink
[GCU] Ignore bgpraw in GCU applier (sonic-net#2623)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wen587 authored Jan 25, 2023
1 parent b5ac600 commit f4f857e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions generic_config_updater/change_applier.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ class ChangeApplier:
def __init__(self):
self.config_db = get_config_db()
self.backend_tables = [
"bgpraw",
"BUFFER_PG",
"BUFFER_PROFILE",
"FLEX_COUNTER_TABLE"
Expand Down

0 comments on commit f4f857e

Please sign in to comment.