Skip to content

Commit

Permalink
chore: fix prow errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mytunguyen committed Aug 5, 2020
1 parent 679df3e commit 671662d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cloud/services/ec2/instances.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ func (s *Service) GetCoreNodeSecurityGroups() ([]string, error) {
for _, sg := range sgRoles {
if _, ok := s.scope.SecurityGroups()[sg]; !ok {
return nil, awserrors.NewFailedDependency(
errors.Errorf("%s security group not available", sg),
fmt.Sprintf("%s security group not available", sg),
)
}
ids = append(ids, s.scope.SecurityGroups()[sg].ID)
Expand Down

0 comments on commit 671662d

Please sign in to comment.