Skip to content

Commit

Permalink
Merge branch '202305' of https://github.com/sonic-net/sonic-utilities
Browse files Browse the repository at this point in the history
…into 202305
  • Loading branch information
mssonicbld committed May 10, 2024
2 parents fa150da + a1a5eac commit 5154cca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utilities_common/platform_sfputil_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ def is_rj45_port(port_name):
if not platform_sfp_base:
import sonic_platform_base
platform_sfp_base = sonic_platform_base.sfp_base.SfpBase
except ModuleNotFoundError as e:
except (ModuleNotFoundError, FileNotFoundError) as e:
# This method is referenced by intfutil which is called on vs image
# However, there is no platform API supported on vs image
# So False is returned in such case
# sonic_platform API support is added for vs image(required for chassis), it expects a metadata file, which
# wont be available on vs pizzabox duts, So False is returned(if either ModuleNotFound or FileNotFound)
return False

if platform_chassis and platform_sfp_base:
Expand Down

0 comments on commit 5154cca

Please sign in to comment.