From d846f846ec812b572cc7ab994d84e4130b9ba310 Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Mon, 25 Oct 2021 16:26:36 +0800 Subject: [PATCH] Further increase completion timeout --- s3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3.go b/s3.go index 621004d..daf69c3 100644 --- a/s3.go +++ b/s3.go @@ -231,7 +231,7 @@ func completeMultipartUpload( parts []completePart, cred credential, ) (completeMultipartUploadResult, error) { - ctx, cancel := context.WithTimeout(context.Background(), 10*time.Minute) + ctx, cancel := context.WithTimeout(context.Background(), 1*time.Hour) defer cancel() var body bytes.Buffer