diff options
author | Alex Auvolat <alex@adnab.me> | 2022-07-22 19:06:56 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-07-29 12:25:03 +0200 |
commit | 68087ee13dc22dbaeb0c1fa8dcb4bdbaa82098a6 (patch) | |
tree | 6dfb63c24ae6a14350ce19d9e08bef27ff0fe36d | |
parent | 605a630333c8ee60c55fe011a375c01277bba173 (diff) | |
download | garage-68087ee13dc22dbaeb0c1fa8dcb4bdbaa82098a6.tar.gz garage-68087ee13dc22dbaeb0c1fa8dcb4bdbaa82098a6.zip |
Fix clippy
-rw-r--r-- | src/api/s3/copy.rs | 5 | ||||
-rw-r--r-- | src/api/s3/get.rs | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/api/s3/copy.rs b/src/api/s3/copy.rs index 54a565e0..b54cbd23 100644 --- a/src/api/s3/copy.rs +++ b/src/api/s3/copy.rs @@ -366,10 +366,7 @@ pub async fn handle_upload_part_copy( // we need to insert that data as a new block. async move { if must_upload { - garage2 - .block_manager - .rpc_put_block(final_hash, data.into()) - .await + garage2.block_manager.rpc_put_block(final_hash, data).await } else { Ok(()) } diff --git a/src/api/s3/get.rs b/src/api/s3/get.rs index 7d118f89..c7621ade 100644 --- a/src/api/s3/get.rs +++ b/src/api/s3/get.rs @@ -450,7 +450,6 @@ fn body_from_blocks_range( let garage = garage.clone(); async move { let data = garage.block_manager.rpc_get_block(&block.hash).await?; - let data = Bytes::from(data); let start_in_block = if true_offset > begin { 0 } else { |