diff options
author | Alex Auvolat <alex@adnab.me> | 2023-05-04 19:44:01 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-06-09 16:23:37 +0200 |
commit | 412ab77b0815f165539fe41713c0155a9878672f (patch) | |
tree | e792e8c56b1702701ab443b5466c2fd7f2db97b0 /src/api/s3/multipart.rs | |
parent | 511e07ecd489fa72040171fe908323873a57ac19 (diff) | |
download | garage-412ab77b0815f165539fe41713c0155a9878672f.tar.gz garage-412ab77b0815f165539fe41713c0155a9878672f.zip |
comments and clippy lint fixes
Diffstat (limited to 'src/api/s3/multipart.rs')
-rw-r--r-- | src/api/s3/multipart.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/api/s3/multipart.rs b/src/api/s3/multipart.rs index ecd7a212..611cfd47 100644 --- a/src/api/s3/multipart.rs +++ b/src/api/s3/multipart.rs @@ -340,6 +340,7 @@ pub async fn handle_abort_multipart_upload( // ======== helpers ============ +#[allow(clippy::ptr_arg)] pub(crate) async fn get_upload( garage: &Garage, bucket_id: &Uuid, @@ -347,13 +348,10 @@ pub(crate) async fn get_upload( upload_id: &Uuid, ) -> Result<(Object, ObjectVersion, MultipartUpload), Error> { let (object, mpu) = futures::try_join!( - garage - .object_table - .get(&bucket_id, &key) - .map_err(Error::from), + garage.object_table.get(bucket_id, key).map_err(Error::from), garage .mpu_table - .get(&upload_id, &EmptyKey) + .get(upload_id, &EmptyKey) .map_err(Error::from), )?; |