diff --git a/crates/core/src/archiver/file_archiver.rs b/crates/core/src/archiver/file_archiver.rs index 1e16d8454..eb428784e 100644 --- a/crates/core/src/archiver/file_archiver.rs +++ b/crates/core/src/archiver/file_archiver.rs @@ -178,6 +178,6 @@ impl<'a, BE: DecryptWriteBackend, I: ReadGlobalIndex> FileArchiver<'a, BE, I> { /// /// If the channel could not be dropped pub(crate) fn finalize(self) -> RusticResult { - Ok(self.data_packer.finalize()?) + self.data_packer.finalize() } }