Skip to content

Commit

Permalink
Merge pull request #510 from bongbui321/setactiveslot_fix
Browse files Browse the repository at this point in the history
Firehose: fix setting active slot for partition B
  • Loading branch information
bkerler authored Mar 2, 2024
2 parents 31892ae + f120387 commit fa58a5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edlclient/Library/firehose.py
Original file line number Diff line number Diff line change
Expand Up @@ -1311,8 +1311,8 @@ def cmd_setactiveslot(self, slot: str):
partslots["_a"] = True
partslots["_b"] = False
elif slot == "b":
partslots["_a"] = True
partslots["_b"] = False
partslots["_a"] = False
partslots["_b"] = True
fpartitions = {}
for lun in self.luns:
lunname = "Lun" + str(lun)
Expand Down

0 comments on commit fa58a5a

Please sign in to comment.