We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8078c0 commit 2452161Copy full SHA for 2452161
awscommons/v2/ecs.go
@@ -8,7 +8,7 @@ import (
8
9
"github.com/aws/aws-sdk-go-v2/aws"
10
"github.com/aws/aws-sdk-go-v2/service/ecs"
11
- ecsTypes "github.com/aws/aws-sdk-go-v2/service/ecs/types"
+ ecs_types "github.com/aws/aws-sdk-go-v2/service/ecs/types"
12
"github.com/gruntwork-io/go-commons/collections"
13
"github.com/gruntwork-io/go-commons/errors"
14
"github.com/gruntwork-io/go-commons/retry"
@@ -193,7 +193,7 @@ func allInstancesFullyDrained(responses []*ecs.DescribeContainerInstancesOutput)
193
return true, nil
194
}
195
196
-func instanceFullyDrained(instance ecsTypes.ContainerInstance) bool {
+func instanceFullyDrained(instance ecs_types.ContainerInstance) bool {
197
instanceArn := instance.ContainerInstanceArn
198
199
if *instance.Status == "ACTIVE" {
0 commit comments