We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76cc67b commit 6ab9d67Copy full SHA for 6ab9d67
sfputil/main.py
@@ -261,7 +261,8 @@ def convert_sfp_info_to_output_string(sfp_info_dict):
261
pass
262
elif key == 'specification_compliance':
263
if sfp_info_dict['type'] == "QSFP-DD Double Density 8X Pluggable Transceiver" or \
264
- sfp_info_dict['type'] == "OSFP 8X Pluggable Transceiver":
+ sfp_info_dict['type'] == "OSFP 8X Pluggable Transceiver" or \
265
+ sfp_info_dict['type'] == "QSFP+ or later with CMIS":
266
output += '{}{}: {}\n'.format(indent, QSFP_DATA_MAP[key], sfp_info_dict[key])
267
else:
268
output += '{}{}:\n'.format(indent, QSFP_DATA_MAP['specification_compliance'])
0 commit comments