]> git.proxmox.com Git - proxmox-backup.git/commitdiff
chunk_store/insert_chunk: add more information to file errors
authorDominik Csapak <d.csapak@proxmox.com>
Tue, 13 Jul 2021 09:11:24 +0000 (11:11 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 13 Jul 2021 09:55:33 +0000 (11:55 +0200)
otherwise this context is missing in some tasks (e.g. tape restore)
and it is unclear where it came from

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
pbs-datastore/src/chunk_store.rs

index ddf0a769b7703649964d456adff4d5801bbeee66..361cc9a2fa54462c727480e41e6f6270299a8511 100644 (file)
@@ -401,12 +401,26 @@ impl ChunkStore {
         let mut tmp_path = chunk_path.clone();
         tmp_path.set_extension("tmp");
 
-        let mut file = std::fs::File::create(&tmp_path)?;
+        let mut file = std::fs::File::create(&tmp_path).map_err(|err| {
+            format_err!(
+                "creating temporary chunk on store '{}' failed for {} - {}",
+                self.name,
+                digest_str,
+                err
+            )
+        })?;
 
         let raw_data = chunk.raw_data();
         let encoded_size = raw_data.len() as u64;
 
-        file.write_all(raw_data)?;
+        file.write_all(raw_data).map_err(|err| {
+            format_err!(
+                "writing temporary chunk on store '{}' failed for {} - {}",
+                self.name,
+                digest_str,
+                err
+            )
+        })?;
 
         if let Err(err) = std::fs::rename(&tmp_path, &chunk_path) {
             if std::fs::remove_file(&tmp_path).is_err()  { /* ignore */ }