small formatting change to make travis happy

This commit is contained in:
twilfong 2019-06-27 10:26:53 -07:00
parent d68d06f17c
commit bafd7b22bb

View File

@ -240,7 +240,9 @@ func (sc *ingressSource) setDualstackLabel(ingress *v1beta1.Ingress, endpoints [
val, ok := ingress.Annotations[ALBDualstackAnnotationKey]
if ok && val == ALBDualstackAnnotationValue {
log.Debugf("Adding dualstack label to ingress %s/%s.", ingress.Namespace, ingress.Name)
for _, ep := range endpoints { ep.Labels[endpoint.DualstackLabelKey] = "true" }
for _, ep := range endpoints {
ep.Labels[endpoint.DualstackLabelKey] = "true"
}
}
}