Commit 68c0c5dd authored by Quinton Hoole's avatar Quinton Hoole

Add missing argument to log message in federated ingress controller.

parent 4ecb032b
...@@ -671,7 +671,7 @@ func (ic *IngressController) reconcileIngress(ingress types.NamespacedName) { ...@@ -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)
......
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