Skip to content

Commit

Permalink
hw-mgmgt: script: Fix hw-mgmt-sync failed issue on Juliet
Browse files Browse the repository at this point in the history
Fix hw-mgmgt sync scripyt crash.

Bug: 4248850

Signed-off-by: Oleksandr Shamray <oleksandrs@nvidia.com>
  • Loading branch information
sholeksandr committed Jan 10, 2025
1 parent c1603e3 commit d21251d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usr/usr/bin/hw_management_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def main():
sys_attr = atttrib_list["def"]
for key, val in atttrib_list.items():
if re.match(key, product_sku):
sys_attr.update(val)
sys_attr.extend(val)
break

for attr in sys_attr:
Expand Down

0 comments on commit d21251d

Please sign in to comment.