From 3fec7f45f9ec76ba40a2464fe9f04f0edc393c97 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Thu, 19 Dec 2024 10:11:34 -0800 Subject: [PATCH] fmt --- aws-s3-transfer-manager/src/operation/upload/context.rs | 1 - aws-s3-transfer-manager/src/operation/upload/handle.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/aws-s3-transfer-manager/src/operation/upload/context.rs b/aws-s3-transfer-manager/src/operation/upload/context.rs index df324fe..1dc0cab 100644 --- a/aws-s3-transfer-manager/src/operation/upload/context.rs +++ b/aws-s3-transfer-manager/src/operation/upload/context.rs @@ -26,5 +26,4 @@ impl UploadContext { pub(crate) fn request(&self) -> &UploadInput { self.request.deref() } - } diff --git a/aws-s3-transfer-manager/src/operation/upload/handle.rs b/aws-s3-transfer-manager/src/operation/upload/handle.rs index 82e1a24..f19cc9d 100644 --- a/aws-s3-transfer-manager/src/operation/upload/handle.rs +++ b/aws-s3-transfer-manager/src/operation/upload/handle.rs @@ -73,7 +73,7 @@ impl UploadHandle { // TODO: We won't send completeMPU until customers join the future. This can create a // bottleneck where we have many uploads not making the completeMPU call, waiting for the join // to happen, and then everyone tries to do completeMPU at the same time. We should investigate doing - // this without waiting for join to happen. + // this without waiting for join to happen. complete_upload(self).await }