[pbs-devel] [PATCH proxmox-backup v2] fix #4301: correctly pass rate limit parameters to API
Stefan Hanreich
s.hanreich at proxmox.com
Thu Oct 20 15:36:30 CEST 2022
With the old code the rate limit parameters got passed in their own
dictionary under the limit key, but the API expects the rate-limit
settings as top-level keys. This commit correctly sets the rate-limit
parameters so the API actually uses them.
Signed-off-by: Stefan Hanreich <s.hanreich at proxmox.com>
---
src/bin/proxmox-backup-manager.rs | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/src/bin/proxmox-backup-manager.rs b/src/bin/proxmox-backup-manager.rs
index 58e7e33a..b9bfd701 100644
--- a/src/bin/proxmox-backup-manager.rs
+++ b/src/bin/proxmox-backup-manager.rs
@@ -2,7 +2,7 @@ use std::collections::HashMap;
use std::io::{self, Write};
use std::str::FromStr;
-use anyhow::Error;
+use anyhow::{Error, format_err};
use serde_json::{json, Value};
use proxmox_router::{cli::*, RpcEnvironment};
@@ -297,7 +297,6 @@ async fn pull_datastore(
"store": store,
"remote": remote,
"remote-store": remote_store,
- "limit": limit,
});
if remote_ns.is_some() {
@@ -320,6 +319,16 @@ async fn pull_datastore(
args["remove-vanished"] = Value::from(remove_vanished);
}
+ let mut limit_json = json!(limit);
+ let limit_map = limit_json
+ .as_object_mut()
+ .ok_or_else(|| format_err!("limit is not an Object"))?;
+
+ args
+ .as_object_mut()
+ .unwrap()
+ .append(limit_map);
+
let result = client.post("api2/json/pull", Some(args)).await?;
view_task_result(&client, result, &output_format).await?;
--
2.30.2
More information about the pbs-devel
mailing list