Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aws: Rename NoOpRetryer to NopRetryer to be consistent with rest of SDK #987

Merged
merged 3 commits into from
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws/retry/middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func (m mockRetryableError) Error() string {
}

func TestAttemptMiddleware(t *testing.T) {
restoreSleep := sdk.TestingUseNoOpSleep()
restoreSleep := sdk.TestingUseNopSleep()
defer restoreSleep()

sdkTime := sdk.NowTime
Expand Down
2 changes: 1 addition & 1 deletion aws/retry/retry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func TestAddWithErrorCodes(t *testing.T) {
},
}

r := retry.AddWithErrorCodes(aws.NoOpRetryer{}, "Error1", "Error2")
r := retry.AddWithErrorCodes(aws.NopRetryer{}, "Error1", "Error2")

for name, c := range cases {
t.Run(name, func(t *testing.T) {
Expand Down
16 changes: 8 additions & 8 deletions aws/retryer.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,28 @@ type Retryer interface {
GetInitialToken() (releaseToken func(error) error)
}

// NoOpRetryer provides a RequestRetryDecider implementation that will flag
// NopRetryer provides a RequestRetryDecider implementation that will flag
// all attempt errors as not retryable, with a max attempts of 1.
type NoOpRetryer struct{}
type NopRetryer struct{}

// IsErrorRetryable returns false for all error values.
func (NoOpRetryer) IsErrorRetryable(error) bool { return false }
func (NopRetryer) IsErrorRetryable(error) bool { return false }

// MaxAttempts always returns 1 for the original request attempt.
func (NoOpRetryer) MaxAttempts() int { return 1 }
func (NopRetryer) MaxAttempts() int { return 1 }

// RetryDelay is not valid for the NoOpRetryer. Will always return error.
func (NoOpRetryer) RetryDelay(int, error) (time.Duration, error) {
// RetryDelay is not valid for the NopRetryer. Will always return error.
func (NopRetryer) RetryDelay(int, error) (time.Duration, error) {
return 0, fmt.Errorf("not retrying any request errors")
}

// GetRetryToken returns a stub function that does nothing.
func (NoOpRetryer) GetRetryToken(context.Context, error) (func(error) error, error) {
func (NopRetryer) GetRetryToken(context.Context, error) (func(error) error, error) {
return nopReleaseToken, nil
}

// GetInitialToken returns a stub function that does nothing.
func (NoOpRetryer) GetInitialToken() func(error) error {
func (NopRetryer) GetInitialToken() func(error) error {
return nopReleaseToken
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ protected static GoDependency module(
}

private static final class Versions {
private static final String AWS_SDK = "v0.30.1-0.20201216221327-f18ebfdeb472";
private static final String AWS_SDK = "v0.30.1-0.20201217001905-4acf9c65b2d1";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ private AwsCustomGoDependency() {
}

private static final class Versions {
private static final String INTERNAL_S3SHARED = "v0.3.3-0.20201216221327-f18ebfdeb472";
private static final String INTERNAL_ACCEPTENCODING = "v0.3.2-0.20201216221327-f18ebfdeb472";
private static final String INTERNAL_PRESIGNURL = "v0.1.3-0.20201216221327-f18ebfdeb472";
private static final String INTERNAL_S3SHARED = "v0.3.3-0.20201217001905-4acf9c65b2d1";
private static final String INTERNAL_ACCEPTENCODING = "v0.3.2-0.20201217001905-4acf9c65b2d1";
private static final String INTERNAL_PRESIGNURL = "v0.1.3-0.20201217001905-4acf9c65b2d1";
}
}
2 changes: 1 addition & 1 deletion config/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/config
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/aws/aws-sdk-go-v2/credentials v0.1.5
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v0.0.0-20201216182737-05d6a8e2a8df
github.com/aws/aws-sdk-go-v2/service/sts v0.30.0
Expand Down
2 changes: 1 addition & 1 deletion credentials/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/credentials
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v0.0.0-20201216182737-05d6a8e2a8df
github.com/aws/aws-sdk-go-v2/service/sts v0.30.0
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
Expand Down
2 changes: 1 addition & 1 deletion feature/dynamodb/attributevalue/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/aws/aws-sdk-go-v2/service/dynamodb v0.30.0
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v0.30.0
github.com/google/go-cmp v0.5.4
Expand Down
2 changes: 1 addition & 1 deletion feature/dynamodbstreams/attributevalue/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/feature/dynamodbstreams/attributevalue
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/aws/aws-sdk-go-v2/service/dynamodb v0.30.0
github.com/aws/aws-sdk-go-v2/service/dynamodbstreams v0.30.0
github.com/google/go-cmp v0.5.4
Expand Down
2 changes: 1 addition & 1 deletion feature/s3/manager/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/feature/s3/manager
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/aws/aws-sdk-go-v2/config v0.3.0
github.com/aws/aws-sdk-go-v2/service/s3 v0.30.0
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
Expand Down
2 changes: 1 addition & 1 deletion feature/s3/manager/upload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ func TestUploadRetry(t *testing.T) {

for name, c := range cases {
t.Run(name, func(t *testing.T) {
restoreSleep := sdk.TestingUseNoOpSleep()
restoreSleep := sdk.TestingUseNopSleep()
defer restoreSleep()

mux := newMockS3UploadServer(t, c.PartHandlers(t))
Expand Down
2 changes: 1 addition & 1 deletion internal/protocoltest/awsrestjson/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/protocoltest/awsrestjson
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
github.com/google/go-cmp v0.5.4
)
Expand Down
2 changes: 1 addition & 1 deletion internal/protocoltest/ec2query/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/protocoltest/ec2query
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
github.com/google/go-cmp v0.5.4
)
Expand Down
2 changes: 1 addition & 1 deletion internal/protocoltest/jsonrpc/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/protocoltest/jsonrpc
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
github.com/google/go-cmp v0.5.4
)
Expand Down
2 changes: 1 addition & 1 deletion internal/protocoltest/jsonrpc10/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/protocoltest/jsonrpc10
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
github.com/google/go-cmp v0.5.4
)
Expand Down
2 changes: 1 addition & 1 deletion internal/protocoltest/query/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/protocoltest/query
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
github.com/google/go-cmp v0.5.4
)
Expand Down
2 changes: 1 addition & 1 deletion internal/protocoltest/restxml/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/internal/protocoltest/restxml
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
github.com/google/go-cmp v0.5.4
)
Expand Down
4 changes: 2 additions & 2 deletions internal/sdk/time.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ func noOpSleepWithContext(context.Context, time.Duration) error {

func noOpSleep(time.Duration) {}

// TestingUseNoOpSleep is a utility for disabling sleep across the SDK for
// TestingUseNopSleep is a utility for disabling sleep across the SDK for
// testing.
func TestingUseNoOpSleep() func() {
func TestingUseNopSleep() func() {
SleepWithContext = noOpSleepWithContext
Sleep = noOpSleep

Expand Down
2 changes: 1 addition & 1 deletion service/accessanalyzer/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/accessanalyzer
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/acm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/acm
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/acmpca/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/acmpca
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/alexaforbusiness/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/alexaforbusiness
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/amplify/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/amplify
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/apigateway/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/apigateway
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (m *mockClient) Do(*http.Request) (*http.Response, error) {
func TestAddAcceptHeader(t *testing.T) {
options := apigateway.Options{
Credentials: unit.StubCredentialsProvider{},
Retryer: aws.NoOpRetryer{},
Retryer: aws.NopRetryer{},
HTTPClient: &mockClient{},
Region: "mock-region",
}
Expand Down
2 changes: 1 addition & 1 deletion service/apigateway/internal/customizations/unit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func Test_EmptyResponse(t *testing.T) {
SigningName: "apigateway",
}, nil
}),
Retryer: aws.NoOpRetryer{},
Retryer: aws.NopRetryer{},
}

client := apigateway.NewFromConfig(cfg)
Expand Down
2 changes: 1 addition & 1 deletion service/apigatewaymanagementapi/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/apigatewayv2/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/apigatewayv2
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/appconfig/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/appconfig
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/appflow/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/appflow
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/applicationautoscaling/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/applicationautoscaling
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/applicationdiscoveryservice/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/applicationinsights/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/applicationinsights
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/appmesh/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/appmesh
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/appstream/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/appstream
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/appsync/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/appsync
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/athena/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/athena
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/autoscaling/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/autoscaling
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/autoscalingplans/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/autoscalingplans
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
2 changes: 1 addition & 1 deletion service/backup/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws/aws-sdk-go-v2/service/backup
go 1.15

require (
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201216221327-f18ebfdeb472
github.com/aws/aws-sdk-go-v2 v0.30.1-0.20201217001905-4acf9c65b2d1
github.com/awslabs/smithy-go v0.4.1-0.20201216214517-20e212c92831
)

Expand Down
Loading