Skip to content

Commit

Permalink
Merge pull request kubernetes#4952 from Shubham82/fix-typo
Browse files Browse the repository at this point in the history
Fixed Typo in aws_wrapper.go
  • Loading branch information
k8s-ci-robot authored Jun 7, 2022
2 parents 36d3399 + eb667c1 commit ddf66f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster-autoscaler/cloudprovider/aws/aws_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ func (m *awsWrapper) getInstanceTypesForAsgs(asgs []*asg) (map[string]string, er
for asgName, lt := range launchTemplatesToQuery {
instanceType, err := m.getInstanceTypeByLaunchTemplate(lt)
if err != nil {
klog.Errorf("Failed to query launch tempate %s: %v", lt.name, err)
klog.Errorf("Failed to query launch template %s: %v", lt.name, err)
continue
}
results[asgName] = instanceType
Expand Down

0 comments on commit ddf66f8

Please sign in to comment.