Skip to content

Commit

Permalink
go fmt...
Browse files Browse the repository at this point in the history
  • Loading branch information
ylallemant committed Jan 18, 2019
1 parent 2a88180 commit afe8f3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ package api

import (
"fmt"
"github.com/aws/aws-sdk-go/aws"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/autoscaling"
)

Expand Down Expand Up @@ -62,7 +62,7 @@ func (ass *autoscalingService) DescribeAutoscalingGroup(autoscalingGroupName str
for _, group := range res.AutoScalingGroups {
if *group.AutoScalingGroupName == autoscalingGroupName {
return &EC2AutoscalingGroup{
Name: *group.AutoScalingGroupName,
Name: *group.AutoScalingGroupName,
LaunchConfigurationName: *group.LaunchConfigurationName,
AvailabilityZones: aws.StringValueSlice(group.AvailabilityZones),
}, nil
Expand Down

0 comments on commit afe8f3c

Please sign in to comment.