From 4e4a714147f611bdee624790899e137a7695549e 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) }