Add missing argument to log message in federated ingress controller.

This commit is contained in:
Quinton Hoole 2016-10-05 18:20:12 -07:00
parent 4ecb032bc9
commit 68c0c5ddea

View File

@ -671,7 +671,7 @@ func (ic *IngressController) reconcileIngress(ingress types.NamespacedName) {
ClusterName: cluster.Name, ClusterName: cluster.Name,
}) })
} else { } else {
glog.V(4).Infof("No annotation %q exists on ingress %q in federation, and index of cluster %q is %d and not zero. Not queueing create operation for ingress %q until annotation exists", staticIPNameKeyWritable, ingress, cluster.Name, clusterIndex) glog.V(4).Infof("No annotation %q exists on ingress %q in federation, and index of cluster %q is %d and not zero. Not queueing create operation for ingress %q until annotation exists", staticIPNameKeyWritable, ingress, cluster.Name, clusterIndex, ingress)
} }
} else { } else {
clusterIngress := clusterIngressObj.(*extensions_v1beta1.Ingress) clusterIngress := clusterIngressObj.(*extensions_v1beta1.Ingress)