From a16bde23f7140215ba160e75e91eb54c845abf8f Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 29 Jan 2024 23:15:47 +0800 Subject: [PATCH] chore: tweak variable name --- plugin/storage/s3/s3.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugin/storage/s3/s3.go b/plugin/storage/s3/s3.go index 842032c4..b94efa83 100644 --- a/plugin/storage/s3/s3.go +++ b/plugin/storage/s3/s3.go @@ -2,7 +2,6 @@ package s3 import ( "context" - "errors" "fmt" "io" "net/url" @@ -15,7 +14,7 @@ import ( "github.com/aws/aws-sdk-go-v2/feature/s3/manager" awss3 "github.com/aws/aws-sdk-go-v2/service/s3" "github.com/aws/aws-sdk-go-v2/service/s3/types" - errors2 "github.com/pkg/errors" + "github.com/pkg/errors" ) const LinkLifetime = 24 * time.Hour @@ -110,7 +109,7 @@ func (client *Client) UploadFile(ctx context.Context, filename string, fileType func (client *Client) PreSignLink(ctx context.Context, sourceLink string) (string, error) { u, err := url.Parse(sourceLink) if err != nil { - return "", errors2.Wrapf(err, "parse URL") + return "", errors.Wrapf(err, "parse URL") } // if link doesn't belong to storage, then return as-is. // the empty hostname is corner-case for AWS native endpoint. @@ -135,7 +134,7 @@ func (client *Client) PreSignLink(ctx context.Context, sourceLink string) (strin Key: aws.String(filename), }, awss3.WithPresignExpires(LinkLifetime)) if err != nil { - return "", errors2.Wrapf(err, "pre-sign link") + return "", errors.Wrapf(err, "pre-sign link") } return req.URL, nil }