Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 41f17bd

Browse files
author
Kubernetes Submit Queue
authored
Merge pull request #34158 from quinton-hoole/2016-10-05-fix-ingress-bug-mac
Automatic merge from submit-queue Add missing argument to log message in federated ingress controller. Minor fix, to address this: 1006 01:08:50.605184 1 ingress_controller.go:674] No annotation "kubernetes.io/ingress.global-static-ip-name" exists on ingress "e2e-tests-federated-ingress-2787b/federated-ingress" in federation, and index of cluster "federation-e2e-gce-us-central1-f" is 1 and not zero. Not queueing create operation for ingress *%!q(MISSING)* until annotation exists
2 parents 6a9d56b + 68c0c5d commit 41f17bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

federation/pkg/federation-controller/ingress/ingress_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ func (ic *IngressController) reconcileIngress(ingress types.NamespacedName) {
671671
ClusterName: cluster.Name,
672672
})
673673
} else {
674-
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)
674+
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)
675675
}
676676
} else {
677677
clusterIngress := clusterIngressObj.(*extensions_v1beta1.Ingress)

0 commit comments

Comments
 (0)