Skip to content

Commit

Permalink
Update db_migrator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arfeigin authored Jan 4, 2023
1 parent 5ef77ca commit 9911b3f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/db_migrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,6 +868,10 @@ def common_migration_ops(self):
new_cfg = {**init_cfg, **curr_cfg}
self.configDB.set_entry(init_cfg_table, key, new_cfg)

# Avoiding copp table migration is platform specific at the moment as I understood this might cause issues for some
# vendors, probably Broadcom. This change can be checked with any specific vendor and if this works fine the platform
# condition can be modified and extend. If no vendor has an issue with not clearing copp tables the condition can be
# removed together with calling to migrate_copp_table function.
if self.asic_type != "mellanox":
self.migrate_copp_table()
if self.asic_type == "broadcom" and 'Force10-S6100' in self.hwsku:
Expand Down

0 comments on commit 9911b3f

Please sign in to comment.