Skip to content

Commit

Permalink
[devices]: Dell S6100 API 2.0 fix (#16363)
Browse files Browse the repository at this point in the history
Why I did it
sonic-mgmt test failure is seen for update_firmware component API

Microsoft ADO: 25208748

How I did it
Edited API 2.0 to fix this issue.

How to verify it
Run sonic-mgmt test after the fix and verify it passes.
  • Loading branch information
aravindmani-1 authored and lguohan committed Sep 19, 2023
1 parent 5281005 commit d2fe623
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,16 @@ def install_firmware(self, image_path):
A boolean, True if install was successful, False if not
"""
return False

def update_firmware(self,image_path):
"""
Updates firmware to the componenent
Args:
image_path: A string, path to firmware image
Returns:
A boolean, True if install was successful, False if not
"""
return False

0 comments on commit d2fe623

Please sign in to comment.