From bbad67b49f125d4120bbae58dfd1415f05b2d832 Mon Sep 17 00:00:00 2001 From: Shawn Hurley Date: Wed, 3 Jul 2024 11:06:05 -0400 Subject: [PATCH] Revert ":bug: Use tag source from Tagger" (#105) Reverts konveyor/tackle2-addon-analyzer#104 --- cmd/tagger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tagger.go b/cmd/tagger.go index 07e2291..4e650f0 100644 --- a/cmd/tagger.go +++ b/cmd/tagger.go @@ -110,7 +110,7 @@ func (r *Tagger) ensureTags(catMap map[string]uint, tags []string) (tagIds []uin // ensureAssociated ensure wanted tags are associated. func (r *Tagger) ensureAssociated(appID uint, wanted []uint) (err error) { tags := addon.Application.Tags(appID) - tags.Source(r.Source) + tags.Source(Source) err = tags.Replace(wanted) return }