Skip to content

Commit

Permalink
Merge pull request #52 from mssonicbld/sonicbld/202205-merge
Browse files Browse the repository at this point in the history
[code sync] Merge code from sonic-net/sonic-utilities.msft:202205 to 202205
  • Loading branch information
mssonicbld authored Mar 13, 2024
2 parents 2b86126 + 39316e4 commit c6ac555
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/sfpshow
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,10 @@ class SFPShow(object):
for suffix in ZR_PM_THRESHOLD_KEY_SUFFIXS:
key = self.convert_pm_prefix_to_threshold_prefix(
prefix) + suffix
thresholds.append(
float(sfp_threshold_dict[key]) if key in sfp_threshold_dict else None)
if key in sfp_threshold_dict and sfp_threshold_dict[key] != 'N/A':
thresholds.append(float(sfp_threshold_dict[key]))
else:
thresholds.append(None)

tca_high, tca_low = None, None
if values[2] is not None and thresholds[0] is not None:
Expand Down

0 comments on commit c6ac555

Please sign in to comment.