Skip to content

Commit 2452161

Browse files
committed
Update package alias.
1 parent a8078c0 commit 2452161

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

awscommons/v2/ecs.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/aws/aws-sdk-go-v2/aws"
1010
"github.com/aws/aws-sdk-go-v2/service/ecs"
11-
ecsTypes "github.com/aws/aws-sdk-go-v2/service/ecs/types"
11+
ecs_types "github.com/aws/aws-sdk-go-v2/service/ecs/types"
1212
"github.com/gruntwork-io/go-commons/collections"
1313
"github.com/gruntwork-io/go-commons/errors"
1414
"github.com/gruntwork-io/go-commons/retry"
@@ -193,7 +193,7 @@ func allInstancesFullyDrained(responses []*ecs.DescribeContainerInstancesOutput)
193193
return true, nil
194194
}
195195

196-
func instanceFullyDrained(instance ecsTypes.ContainerInstance) bool {
196+
func instanceFullyDrained(instance ecs_types.ContainerInstance) bool {
197197
instanceArn := instance.ContainerInstanceArn
198198

199199
if *instance.Status == "ACTIVE" {

0 commit comments

Comments
 (0)