From 42dad7fa60e5c6273c30af1cc364fe204788b069 Mon Sep 17 00:00:00 2001 From: Manuel de Brito Fontes Date: Sat, 11 Nov 2017 15:26:36 -0300 Subject: [PATCH] Fix use merge of annotations --- internal/ingress/annotations/annotations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ingress/annotations/annotations.go b/internal/ingress/annotations/annotations.go index 0ec0db8f4..2bbd8814d 100644 --- a/internal/ingress/annotations/annotations.go +++ b/internal/ingress/annotations/annotations.go @@ -153,7 +153,7 @@ func (e Extractor) Extract(ing *extensions.Ingress) *Ingress { } } - err := mergo.Map(pia, data) + err := mergo.MapWithOverwrite(pia, data) if err != nil { glog.Errorf("unexpected error merging extracted annotations: %v", err) }