Skip to content

Commit

Permalink
fix(service_endpoints_sync.go): error to be indicative of failure type
Browse files Browse the repository at this point in the history
  • Loading branch information
aauren committed Apr 24, 2024
1 parent 59a1281 commit 1f0a2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controllers/proxy/service_endpoints_sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ func (nsc *NetworkServicesController) setupExternalIPForDSRService(svc *serviceI

dummyVipInterface, err := nsc.ln.getKubeDummyInterface()
if err != nil {
return errors.New("Failed creating dummy interface: " + err.Error())
return errors.New("Failed getting dummy interface: " + err.Error())
}

ipvsSvcs, err := nsc.ln.ipvsGetServices()
Expand Down

0 comments on commit 1f0a2cf

Please sign in to comment.