From f4f857e103daa746ab4f2e7a908c1aefc299a713 Mon Sep 17 00:00:00 2001 From: jingwenxie Date: Wed, 25 Jan 2023 08:51:16 +0800 Subject: [PATCH] [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. --- generic_config_updater/change_applier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/generic_config_updater/change_applier.py b/generic_config_updater/change_applier.py index f5a365d59f..30d81f9119 100644 --- a/generic_config_updater/change_applier.py +++ b/generic_config_updater/change_applier.py @@ -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"