Skip to content

Commit

Permalink
fix H30 drive identification (#15082)
Browse files Browse the repository at this point in the history
  • Loading branch information
yocalebo authored Dec 3, 2024
1 parent 17cd3bb commit bae4e3e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,11 @@ def toggle_enclosure_slot_identifier(

slot_errmsg = f"Slot: {slot!r} not found"
slot = str(slot)
if model in (ControllerModels.H10.value, ControllerModels.H20.value):
if model in (
ControllerModels.H10.value,
ControllerModels.H20.value,
ControllerModels.H30.value,
):
# kernel bug for hseries where the slot files report duplicate numbers
# between the array device slots so until that can be fixed, we have to
# use the directory name where the slot file exists. Only applies to 4
Expand Down

0 comments on commit bae4e3e

Please sign in to comment.