diff --git a/pkg/driver/node.go b/pkg/driver/node.go index b2b2fde4b1..faf63c819d 100644 --- a/pkg/driver/node.go +++ b/pkg/driver/node.go @@ -230,10 +230,7 @@ func (d *nodeService) NodeExpandVolume(ctx context.Context, req *csi.NodeExpandV return nil, status.Error(codes.InvalidArgument, "Volume ID not provided") } - capRange := req.GetCapacityRange() - if capRange != nil { - // TODO: range specified - } + // TODO: range specified args := []string{"-o", "source", "--noheadings", "--target", req.GetVolumePath()} output, err := d.mounter.Exec.Run("findmnt", args...)