Skip to content

Commit

Permalink
fix(LargeBlock): removed apostrophe
Browse files Browse the repository at this point in the history
Signed-off-by: Damien Thenot <[email protected]>
  • Loading branch information
Nambrok committed Mar 18, 2024
1 parent 2467fe5 commit 610ea13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/LargeBlockSR.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def _redo_vg_connection(self):
try:
cmd = ["vgchange", "-an", self.vgname]
util.pread2(cmd)
cmd = ["vgchange", "-ay", self.vgname, "--config", "'devices{ global_filter = [ \"r|^/dev/nvme.*|\", \"a|/dev/loop.*|\" ] }'"]
cmd = ["vgchange", "-ay", self.vgname, "--config", "devices{ global_filter = [ \"r|^/dev/nvme.*|\", \"a|/dev/loop.*|\" ] }"]
util.pread2(cmd)
except util.CommandException as e:
util.SMlog("Failed to reconnect the VolumeGroup {}, error: {}".format(self.vgname, e))
Expand Down

0 comments on commit 610ea13

Please sign in to comment.