From 34d3e5b1cc957a115924b7bfda9661ce4f9abbab Mon Sep 17 00:00:00 2001 From: jpayne3506 Date: Fri, 26 Sep 2025 14:25:23 -0500 Subject: [PATCH] fix: Improper CNS log --- cns/restserver/ipam.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cns/restserver/ipam.go b/cns/restserver/ipam.go index 689221ea69..bee76544fb 100644 --- a/cns/restserver/ipam.go +++ b/cns/restserver/ipam.go @@ -939,7 +939,7 @@ func (service *HTTPRestService) AssignAvailableIPConfigs(podInfo cns.PodInfo) ([ return podIPInfo, fmt.Errorf("not enough IPs available, waiting on Azure CNS to allocate more") } - logger.Printf("[AssignDesiredIPConfigs] Successfully assigned IPs for pod %+v", podInfo) + logger.Printf("[AssignAvailableIPConfigs] Successfully assigned IPs for pod %+v", podInfo) return podIPInfo, nil }