Commit 60f9ce8a authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

Merge pull request #29253 from lixiaobing10051267/masterLBname

Automatic merge from submit-queue format number not consistent with real variable number glog.Infof format number not consistent with real variable number, should add %s for second var because loadBalancerName is string: func (c *Cloud) ensureLoadBalancer(namespacedName types.NamespacedName, loadBalancerName string, ...
parents 9cf9f930 6de7bc00
......@@ -59,7 +59,7 @@ func (c *Cloud) ensureLoadBalancer(namespacedName types.NamespacedName, loadBala
{Key: aws.String(TagNameKubernetesService), Value: aws.String(namespacedName.String())},
}
glog.Infof("Creating load balancer for %v with name: ", namespacedName, loadBalancerName)
glog.Infof("Creating load balancer for %v with name: %s", namespacedName, loadBalancerName)
_, err := c.elb.CreateLoadBalancer(createRequest)
if err != nil {
return nil, err
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment