Skip to content

Commit

Permalink
Fix copy paste error in logging
Browse files Browse the repository at this point in the history
  • Loading branch information
spangenberg committed Nov 7, 2018
1 parent 205838d commit 9647f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cloud/aws/actuators/machine/actuator.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ func getSubnetIDs(subnet providerconfigv1.AWSResourceReference, availabilityZone
}
describeSubnetResult, err := client.DescribeSubnets(&describeSubnetRequest)
if err != nil {
glog.Errorf("error describing security groups: %v", err)
return nil, fmt.Errorf("error describing security groups: %v", err)
glog.Errorf("error describing subnetes: %v", err)
return nil, fmt.Errorf("error describing subnets: %v", err)
}
for _, n := range describeSubnetResult.Subnets {
subnetID := *n.SubnetId
Expand Down

0 comments on commit 9647f68

Please sign in to comment.