feat: implement v1.2.1 fixes #95

Merged
sarman merged 11 commits from fix/proxmox-v1.2.1 into master 2026-06-13 03:50:35 +00:00
Showing only changes of commit 24f3765917 - Show all commits

View File

@ -1894,7 +1894,11 @@ pub async fn update_cluster_notes(
let path = "cluster/config";
let body = serde_json::json!({ "notes": notes });
let _: serde_json::Value = client_guard
.put(path, &body, Some(client_guard.ticket.as_deref().unwrap_or("")))
.put(
path,
&body,
Some(client_guard.ticket.as_deref().unwrap_or("")),
)
.await
.map_err(|e| format!("Failed to update cluster notes: {}", e))?;