upload_chunk: use block_in_place

This commit is contained in:
Dietmar Maurer 2020-10-01 11:00:23 +02:00
parent 0f22f53b36
commit 124b93f31c
1 changed files with 7 additions and 4 deletions

View File

@ -61,12 +61,15 @@ impl Future for UploadChunk {
let (is_duplicate, compressed_size) = match proxmox::try_block! {
let mut chunk = DataBlob::from_raw(raw_data)?;
tools::runtime::block_in_place(|| {
chunk.verify_unencrypted(this.size as usize, &this.digest)?;
// always comput CRC at server side
chunk.set_crc(chunk.compute_crc());
this.store.insert_chunk(&chunk, &this.digest)
})
} {
Ok(res) => res,
Err(err) => break err,