Skip to content

Commit cd35e2b

Browse files
authored
Merge pull request #149 from luthermonson/typo
fixing typo in log
2 parents 8086249 + e17ff81 commit cd35e2b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cloud/linode/loadbalancers.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ func (l *loadbalancers) EnsureLoadBalancerDeleted(ctx context.Context, clusterNa
432432
serviceNn := getServiceNn(service)
433433

434434
if len(service.Status.LoadBalancer.Ingress) == 0 {
435-
klog.Infof("short-circuting deletion of NodeBalancer for service(%s) as LoadBalancer ingress is not present", serviceNn)
435+
klog.Infof("short-circuiting deletion of NodeBalancer for service(%s) as LoadBalancer ingress is not present", serviceNn)
436436
return nil
437437
}
438438

@@ -442,7 +442,7 @@ func (l *loadbalancers) EnsureLoadBalancerDeleted(ctx context.Context, clusterNa
442442
break
443443

444444
case lbNotFoundError:
445-
klog.Infof("short-circuting deletion for NodeBalancer for service (%s) as one does not exist: %s", serviceNn, err)
445+
klog.Infof("short-circuiting deletion for NodeBalancer for service (%s) as one does not exist: %s", serviceNn, err)
446446
return nil
447447

448448
default:
@@ -452,7 +452,7 @@ func (l *loadbalancers) EnsureLoadBalancerDeleted(ctx context.Context, clusterNa
452452
}
453453

454454
if l.shouldPreserveNodeBalancer(service) {
455-
klog.Infof("short-circuting deletion of NodeBalancer (%d) for service (%s) as annotated with %s", nb.ID, serviceNn, annLinodeLoadBalancerPreserve)
455+
klog.Infof("short-circuiting deletion of NodeBalancer (%d) for service (%s) as annotated with %s", nb.ID, serviceNn, annLinodeLoadBalancerPreserve)
456456
return nil
457457
}
458458

0 commit comments

Comments
 (0)