From 68c0c5ddea3f3bea2fc9767388745a2a8e56a178 Mon Sep 17 00:00:00 2001 From: Quinton Hoole Date: Wed, 5 Oct 2016 18:20:12 -0700 Subject: [PATCH] Add missing argument to log message in federated ingress controller. --- .../pkg/federation-controller/ingress/ingress_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federation/pkg/federation-controller/ingress/ingress_controller.go b/federation/pkg/federation-controller/ingress/ingress_controller.go index 5e2e85e9cf2..68236ddeb23 100644 --- a/federation/pkg/federation-controller/ingress/ingress_controller.go +++ b/federation/pkg/federation-controller/ingress/ingress_controller.go @@ -671,7 +671,7 @@ func (ic *IngressController) reconcileIngress(ingress types.NamespacedName) { ClusterName: cluster.Name, }) } 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 { clusterIngress := clusterIngressObj.(*extensions_v1beta1.Ingress)