Skip to content

Commit

Permalink
lint: fix (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkode committed Nov 26, 2019
1 parent 1efca99 commit dd8e9ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/auth/manager/ldap/ldap.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func (am *mgr) Authenticate(ctx context.Context, clientID, clientSecret string)

uid := &typespb.UserId{
// TODO(jfd): how do we determine the issuer for ldap? ... make configurable
Idp: fmt.Sprintf("%s:%d", am.hostname, am.port),
Idp: fmt.Sprintf("%s:%d", am.hostname, am.port),
OpaqueId: sr.Entries[0].GetAttributeValue(am.schema.UID),
}

Expand Down

0 comments on commit dd8e9ca

Please sign in to comment.