We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d6d9a commit 5d11fc5Copy full SHA for 5d11fc5
generic_config_updater/generic_updater.py
@@ -181,6 +181,8 @@ def replace(self, target_config):
181
182
self.logger.log_notice("Verifying config replacement is reflected on ConfigDB.")
183
new_config = self.config_wrapper.get_config_db_as_json()
184
+ self.patch_applier.changeapplier.remove_backend_tables_from_config(target_config)
185
+ self.patch_applier.changeapplier.remove_backend_tables_from_config(new_config)
186
if not (self.patch_wrapper.verify_same_json(target_config, new_config)):
187
raise GenericConfigUpdaterError(f"After replacing config, there is still some parts not updated")
188
0 commit comments