Compare commits

...

1 commit

Author SHA1 Message Date
Quentin 75597a1820 Disable UploadPartCopy min size test 2022-02-22 18:20:52 +01:00

View file

@ -300,12 +300,7 @@ pub async fn handle_upload_part_copy(
current_offset = block_end; current_offset = block_end;
} }
if size_to_copy < 1024 * 1024 { trace!("UploadPartCopy will copy {} bytes", size_to_copy);
return Err(Error::BadRequest(format!(
"Not enough data to copy: {} bytes (minimum: 1MB)",
size_to_copy
)));
}
// Now, actually copy the blocks // Now, actually copy the blocks
let mut md5hasher = Md5::new(); let mut md5hasher = Md5::new();