Skip to content

Commit

Permalink
Enhance sfputil for CMIS QSFP (sonic-net#1949)
Browse files Browse the repository at this point in the history
  • Loading branch information
andywongarista committed Dec 1, 2021
1 parent 4e132c1 commit 1ea88e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sfputil/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ def convert_sfp_info_to_output_string(sfp_info_dict):
pass
elif key == 'specification_compliance':
if sfp_info_dict['type'] == "QSFP-DD Double Density 8X Pluggable Transceiver" or \
sfp_info_dict['type'] == "OSFP 8X Pluggable Transceiver":
sfp_info_dict['type'] == "OSFP 8X Pluggable Transceiver" or \
sfp_info_dict['type'] == "QSFP+ or later with CMIS":
output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key])
else:
output += '{}{}:\n'.format(indent, QSFP_DATA_MAP['specification_compliance'])
Expand Down

0 comments on commit 1ea88e2

Please sign in to comment.