Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func buildKASClient(c *config) (KASClient, error) {
// at this point we have either both client credentials and a token endpoint or none of the above. if we don't have
// any just return a KAS client that can only get public keys
if c.clientCredentials.ClientId == "" {
return KASClient{}, nil
return KASClient{dialOptions: c.build()}, nil
}

ts, err := NewIDPAccessTokenSource(
Expand Down