Skip to content

Commit 9b85603

Browse files
LukasHirtCopilot
andauthored
fix: change error message of instance URL template
Changed the message to better reflect the config value. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 0e1a269 commit 9b85603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/graph/pkg/identity/ldap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ func NewLDAPBackend(lc ldap.Client, config config.LDAP, logger *log.Logger, inst
183183
if instanceID != "" {
184184
instanceURLTemplate, err = template.New("instanceURLTemplate").Parse(config.InstanceURLTemplate)
185185
if err != nil {
186-
return nil, fmt.Errorf("error parsing cross instance reference template: %w", err)
186+
return nil, fmt.Errorf("error parsing instance URL template: %w", err)
187187
}
188188
}
189189

0 commit comments

Comments
 (0)