From f381df977f138709a6b480e3941254357de7b2c8 Mon Sep 17 00:00:00 2001 From: Akos Eros Date: Thu, 28 May 2026 16:07:21 +0200 Subject: [PATCH] fix: prefix change This needs to be working for both singleargocd and regular argocds --- internal/controller/argo.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/controller/argo.go b/internal/controller/argo.go index 351ce6732..1b10fa7cb 100644 --- a/internal/controller/argo.go +++ b/internal/controller/argo.go @@ -1367,8 +1367,7 @@ func getChildApplications(client argoclient.Interface, parentApp *argoapi.Applic // Example: // multicloud-gitops-hub:argoproj.io/Application:multicloud-gitops-hub/ expectedPrefix := fmt.Sprintf( - "%s:argoproj.io/Application:%s/", - parentApp.Name, + "%s:argoproj.io/Application:", parentApp.Name, )