Removed the 'infinite' string which was set when no value was provided
Fixes: https://tracker.ceph.com/issues/65049
Signed-off-by: Ivo Almeida <ialmeida@redhat.com>
const gid = this.subvolumegroupForm.getValue('gid');
const mode = this.formatter.toOctalPermission(this.subvolumegroupForm.getValue('mode'));
if (this.isEdit) {
- const editSize = size === 0 ? 'infinite' : size;
this.taskWrapper
.wrapTaskAroundCall({
task: new FinishedTask('cephfs/subvolume/group/' + URLVerbs.EDIT, {
this.fsName,
subvolumegroupName,
pool,
- String(editSize),
+ String(size),
uid,
gid,
mode