Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #102 from nikhiljindal/fixSSLBug
Browse files Browse the repository at this point in the history
Fixing a bug in deleting SSL certs
  • Loading branch information
nikhiljindal authored Dec 13, 2017
2 parents 86a0da1 + f249f49 commit 21b3b39
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/kubemci/pkg/gcp/loadbalancer/loadbalancersyncer.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,14 @@ func (l *LoadBalancerSyncer) DeleteLoadBalancer(ing *v1beta1.Ingress) error {
// Aggregate errors and return all at the end.
err = multierror.Append(err, frErr)
}
if scErr := l.scs.DeleteSSLCert(); scErr != nil {
// Aggregate errors and return all at the end.
err = multierror.Append(err, scErr)
}
if tpErr := l.tps.DeleteTargetProxies(); tpErr != nil {
// Aggregate errors and return all at the end.
err = multierror.Append(err, tpErr)
}
if scErr := l.scs.DeleteSSLCert(); scErr != nil {
// Aggregate errors and return all at the end.
err = multierror.Append(err, scErr)
}
if umErr := l.ums.DeleteURLMap(); umErr != nil {
// Aggregate errors and return all at the end.
err = multierror.Append(err, umErr)
Expand Down

0 comments on commit 21b3b39

Please sign in to comment.