From 9bacaf984d256115f13e4adfc64843b878049e65 Mon Sep 17 00:00:00 2001 From: "Jose D. Gomez R." Date: Mon, 15 Jun 2026 16:50:05 +0200 Subject: [PATCH] internal/outpost/ldap: remove Printf in MemberForGroup loop (#22952) --- internal/outpost/ldap/utils.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/outpost/ldap/utils.go b/internal/outpost/ldap/utils.go index 7ca16ac6ad..9bf8ac340f 100644 --- a/internal/outpost/ldap/utils.go +++ b/internal/outpost/ldap/utils.go @@ -30,7 +30,6 @@ func (pi *ProviderInstance) MembersForGroup(group api.Group) []string { func (pi *ProviderInstance) MemberOfForGroup(group api.Group) []string { groups := make([]string, len(group.ParentsObj)) for i, group := range group.ParentsObj { - fmt.Printf("in range") groups[i] = pi.GetGroupDN(group.Name) } return groups