Skip to content

Commit

Permalink
fix chassis plugin due to port index change for celestica device (son…
Browse files Browse the repository at this point in the history
…ic-net#55)

Signed-off-by: Sangita Maity <sangitamaity0211@gmail.com>
  • Loading branch information
samaity authored Feb 27, 2020
1 parent c633170 commit fcfe0da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self):
for index in range(0, NUM_THERMAL):
thermal = Thermal(index)
self._thermal_list.append(thermal)
for index in range(0, NUM_SFP):
for index in range(1, NUM_SFP+1):
sfp = Sfp(index)
self._sfp_list.append(sfp)
for index in range(0, NUM_COMPONENT):
Expand Down

0 comments on commit fcfe0da

Please sign in to comment.