Skip to content

Commit

Permalink
Merge pull request #1097 from skmatti/cherrypick-1.7
Browse files Browse the repository at this point in the history
Cherrypick #1076[Return GCE LB deletion error] into release-1.7
  • Loading branch information
k8s-ci-robot authored May 11, 2020
2 parents 5b809df + eda1f99 commit 28b1b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/loadbalancers/l7s.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func (l *L7s) gc(urlMaps []*composite.UrlMap, knownLoadBalancers sets.String, ve

klog.V(2).Infof("GCing loadbalancer %v", l7Name)
if err := l.Delete(l7Name, versions, scope); err != nil {
errors = append(errors, fmt.Errorf("error deleting loadbalancer %q", l7Name))
errors = append(errors, fmt.Errorf("error deleting loadbalancer %q: %v", l7Name, err))
}
}
return errors
Expand Down

0 comments on commit 28b1b65

Please sign in to comment.