Skip to content

Commit

Permalink
Add missing argument to log message in federated ingress controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinton Hoole authored and jessfraz committed Oct 6, 2016
1 parent f240e42 commit 64ab233
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,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)
Expand Down

0 comments on commit 64ab233

Please sign in to comment.