src/bin/proxmox-backup-client.rs: supress useless output from prune command
This commit is contained in:
parent
9731c8b862
commit
43a406fd3f
|
@ -864,11 +864,11 @@ fn prune(
|
||||||
param["backup-type"] = group.backup_type().into();
|
param["backup-type"] = group.backup_type().into();
|
||||||
param["backup-id"] = group.backup_id().into();
|
param["backup-id"] = group.backup_id().into();
|
||||||
|
|
||||||
let result = client.post(&path, Some(param)).wait()?;
|
let _result = client.post(&path, Some(param)).wait()?;
|
||||||
|
|
||||||
record_repository(&repo);
|
record_repository(&repo);
|
||||||
|
|
||||||
Ok(result)
|
Ok(Value::Null)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn status(
|
fn status(
|
||||||
|
|
Loading…
Reference in New Issue