File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
go/vt/mysqlctl/s3backupstorage Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -44,11 +44,10 @@ import (
44
44
"github.com/aws/aws-sdk-go-v2/feature/s3/manager"
45
45
"github.com/aws/aws-sdk-go-v2/service/s3"
46
46
"github.com/aws/aws-sdk-go-v2/service/s3/types"
47
+ transport "github.com/aws/smithy-go/endpoints"
47
48
"github.com/aws/smithy-go/middleware"
48
49
"github.com/spf13/pflag"
49
50
50
- smithyendpoints "github.com/aws/smithy-go/endpoints"
51
-
52
51
"vitess.io/vitess/go/vt/concurrency"
53
52
"vitess.io/vitess/go/vt/log"
54
53
stats "vitess.io/vitess/go/vt/mysqlctl/backupstats"
@@ -117,7 +116,7 @@ type endpointResolver struct {
117
116
endpoint * string
118
117
}
119
118
120
- func (er * endpointResolver ) ResolveEndpoint (ctx context.Context , params s3.EndpointParameters ) (smithyendpoints .Endpoint , error ) {
119
+ func (er * endpointResolver ) ResolveEndpoint (ctx context.Context , params s3.EndpointParameters ) (transport .Endpoint , error ) {
121
120
params .Endpoint = er .endpoint
122
121
return er .r .ResolveEndpoint (ctx , params )
123
122
}
You can’t perform that action at this time.
0 commit comments