We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88ea161 commit a734e88Copy full SHA for a734e88
cns/restserver/ipam.go
@@ -1088,10 +1088,9 @@ func (service *HTTPRestService) AssignAvailableIPConfigs(podInfo cns.PodInfo) ([
1088
return podIPInfo, fmt.Errorf("not enough IPs available, waiting on Azure CNS to allocate more")
1089
}
1090
1091
- // Todo: legacy logger usage is consistent in cns repo. Migrates when all logger usage is migrated
1092
logger.Printf(
1093
"[AssignAvailableIPConfigs] Successfully assigned IPs for pod %+v",
1094
- podInfo, //nolint:staticcheck
+ podInfo, //nolint:staticcheck // Todo: legacy logger usage is consistent in cns repo. Migrates when all logger usage is migrated
1095
)
1096
return podIPInfo, nil
1097
0 commit comments