[pbs-devel] [PATCH proxmox-backup] close #5571: client: fix regression for `map` command

Gabriel Goller g.goller at proxmox.com
Tue Jul 2 09:50:17 CEST 2024


On 02.07.2024 09:24, Christian Ebner wrote:
>Fixes a regression introduced by commit 08fe5052:
>"client: mount: make split pxar archives mountable"
>
>This commit introduced functionality to mount split pxar archives
>(sharing code with the map command), moving the manifest lookup
>exclusive to fixed index archives.
>However, the lookup now uses the incorrect archive name, not
>containing the `.fidx` extension, which is however required for the
>lookup in the manifest.
>
>Fix the issue by calling the method with the correct server archive
>name including the required extension.
>
>Signed-off-by: Christian Ebner <c.ebner at proxmox.com>
>---
> proxmox-backup-client/src/mount.rs | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/proxmox-backup-client/src/mount.rs b/proxmox-backup-client/src/mount.rs
>index d96690839..538a40e68 100644
>--- a/proxmox-backup-client/src/mount.rs
>+++ b/proxmox-backup-client/src/mount.rs
>@@ -302,7 +302,7 @@ async fn mount_do(param: Value, pipe: Option<OwnedFd>) -> Result<Value, Error> {
>             }
>         }
>     } else if server_archive_name.ends_with(".fidx") {
>-        let file_info = manifest.lookup_file_info(archive_name)?;
>+        let file_info = manifest.lookup_file_info(&server_archive_name)?;
>         let index = client
>             .download_fixed_index(&manifest, &server_archive_name)
>             .await?;

Works great!

Consider:
Tested-by: Gabriel Goller <g.goller at proxmox.com>
Reviewed-by: Gabriel Goller <g.goller at proxmox.com>




More information about the pbs-devel mailing list