Skip to content

Commit

Permalink
fix: remove invalid character from the set command
Browse files Browse the repository at this point in the history
Signed-off-by: Abhinandan Purkait <[email protected]>
  • Loading branch information
Abhinandan-Purkait committed Jan 9, 2025
1 parent c239bc7 commit 102ed7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/zfs/zfs_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ func buildVolumeResizeArgs(vol *apis.ZFSVolume) []string {
}

if vol.Spec.ThinProvision == "no" {
ZFSVolArg = append(ZFSVolArg, "-o", reservationProperty(vol.Spec.QuotaType, vol.Spec.Capacity))
ZFSVolArg = append(ZFSVolArg, reservationProperty(vol.Spec.QuotaType, vol.Spec.Capacity))
}

ZFSVolArg = append(ZFSVolArg, volume)
Expand Down

0 comments on commit 102ed7d

Please sign in to comment.