Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Mellanox] Fix a typo in mellanox_buffer_migrator #1090

Merged
merged 1 commit into from
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/mellanox_buffer_migrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def mlnx_migrate_buffer_profile(self, old_version, new_version):
return True

for name, profile in buffer_profile_old_configure.iteritems():
if name in buffer_profile_conf.keys() and profile == buffer_profile_old_configure[name]:
if name in buffer_profile_conf.keys() and profile == buffer_profile_conf[name]:
continue
# return if any default profile isn't in cofiguration
log.log_notice("Default profile {} isn't in database or doesn't match default value".format(name))
Expand All @@ -363,3 +363,5 @@ def mlnx_migrate_buffer_profile(self, old_version, new_version):
for name, profile in buffer_profile_new_configure.iteritems():
log.log_info("Successfully migrate profile {}".format(name))
self.configDB.set_entry('BUFFER_PROFILE', name, profile)

return True