Skip to content

Commit

Permalink
Merge pull request #3910 from martinkennelly/eip-remove-log-extra-arg
Browse files Browse the repository at this point in the history
EIP: remove extra arg in event log message
  • Loading branch information
trozet committed Sep 22, 2023
2 parents e094e6f + a556758 commit c463cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go-controller/pkg/clustermanager/egressip_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ func (eIPC *egressIPClusterController) assignEgressIPs(name string, egressIPs []
Name: name,
}
eIPC.recorder.Eventf(&eIPRef, v1.EventTypeWarning, "EgressIPConflict", "Egress IP %s with IP "+
"%s is conflicting with a host (%s) IP address and will not be assigned", name, eIP.String(), conflictedHost, name)
"%v is conflicting with a host (%s) IP address and will not be assigned", name, eIP, conflictedHost)
klog.Errorf("Egress IP: %v address is already assigned on an interface on node %s", eIP, conflictedHost)
return assignments
}
Expand Down

0 comments on commit c463cea

Please sign in to comment.