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 /src/api/s3/copy.rs | |
parent | 605a630333c8ee60c55fe011a375c01277bba173 (diff) | |
download | garage-68087ee13dc22dbaeb0c1fa8dcb4bdbaa82098a6.tar.gz garage-68087ee13dc22dbaeb0c1fa8dcb4bdbaa82098a6.zip |
Fix clippy
Diffstat (limited to 'src/api/s3/copy.rs')
-rw-r--r-- | src/api/s3/copy.rs | 5 |
1 files changed, 1 insertions, 4 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(()) } |