src/backup/data_blob.rs: allow largert blob sizes (128MB)

Need this for catalog files.
This commit is contained in:
Dietmar Maurer 2019-08-09 10:22:56 +02:00
parent 3fb53e07b4
commit 863be2e6e2

View File

@ -7,7 +7,7 @@ use super::*;
/// Data blob binary storage format /// Data blob binary storage format
/// ///
/// Data blobs store arbitrary binary data (< 16MB), and can be /// Data blobs store arbitrary binary data (< 128MB), and can be
/// compressed and encrypted. A simply binary format is used to store /// compressed and encrypted. A simply binary format is used to store
/// them on disk or transfer them over the network. Please use index /// them on disk or transfer them over the network. Please use index
/// files to store large data files (".fidx" of ".didx"). /// files to store large data files (".fidx" of ".didx").
@ -69,7 +69,7 @@ impl DataBlob {
compress: bool, compress: bool,
) -> Result<Self, Error> { ) -> Result<Self, Error> {
if data.len() > 16*1024*1024 { if data.len() > 128*1024*1024 {
bail!("data blob too large ({} bytes).", data.len()); bail!("data blob too large ({} bytes).", data.len());
} }
@ -215,7 +215,7 @@ impl DataBlob {
compress: bool, compress: bool,
) -> Result<Self, Error> { ) -> Result<Self, Error> {
if data.len() > 16*1024*1024 { if data.len() > 128*1024*1024 {
bail!("data blob too large ({} bytes).", data.len()); bail!("data blob too large ({} bytes).", data.len());
} }