From 0342e4c2f8c9d08534cc8172bc7881739a6428aa Mon Sep 17 00:00:00 2001 From: Renan Rangel Date: Wed, 18 Dec 2024 05:31:54 -0800 Subject: [PATCH] minor comment update Signed-off-by: Renan Rangel --- go/vt/mysqlctl/s3backupstorage/s3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/mysqlctl/s3backupstorage/s3.go b/go/vt/mysqlctl/s3backupstorage/s3.go index c3a48fb0c74..4dd583009aa 100644 --- a/go/vt/mysqlctl/s3backupstorage/s3.go +++ b/go/vt/mysqlctl/s3backupstorage/s3.go @@ -228,7 +228,7 @@ func (bh *S3BackupHandle) handleAddFile(ctx context.Context, filename string, pa }() } -// this is a helper to calculate the part size, taking into consideration the minimum part size +// calculateUploadPartSize is a helper to calculate the part size, taking into consideration the minimum part size // passed in by an operator. func calculateUploadPartSize(filesize int64) (partSizeBytes int64, err error) { // Calculate s3 upload part size using the source filesize