From: Dominik Csapak <d.csapak@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager 2/2] server: api: pbs: improve error message for datastore content
Date: Fri, 5 Dec 2025 12:04:54 +0100 [thread overview]
Message-ID: <20251205110500.1521091-2-d.csapak@proxmox.com> (raw)
In-Reply-To: <20251205110500.1521091-1-d.csapak@proxmox.com>
the code here looks for the response code to determine what to do, but
since the 'extjs' formatter is used, that's always 200, so it's always
attempted to parse the body like a successful api call.
Change the api call to use the 'json' formatter, which correctly sets
the response code directly and not in the body.
This fixes an issue with a very non-informative error message when a pbs
datastore has an error (e.g. no '.chunks' folder) like
missing field `data` at line 1 column xy
instead of the actual error message from the api call.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
server/src/pbs_client.rs | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/server/src/pbs_client.rs b/server/src/pbs_client.rs
index f4f1f820..3f3d2b5f 100644
--- a/server/src/pbs_client.rs
+++ b/server/src/pbs_client.rs
@@ -185,10 +185,9 @@ impl PbsClient {
datastore: &str,
namespace: Option<&str>,
) -> Result<JsonRecords<pbs_api_types::SnapshotListItem>, anyhow::Error> {
- let path =
- ApiPathBuilder::new(format!("/api2/extjs/admin/datastore/{datastore}/snapshots"))
- .maybe_arg("ns", &namespace)
- .build();
+ let path = ApiPathBuilder::new(format!("/api2/json/admin/datastore/{datastore}/snapshots"))
+ .maybe_arg("ns", &namespace)
+ .build();
let response = self
.0
.streaming_request(http::Method::GET, &path, None::<()>)
--
2.47.3
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
prev parent reply other threads:[~2025-12-05 11:05 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-05 11:04 [pdm-devel] [PATCH datacenter-manager 1/2] server: api: pbs: rename 'list_snapshots_2' to 'list_snapshots' Dominik Csapak
2025-12-05 11:04 ` Dominik Csapak [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251205110500.1521091-2-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pdm-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox