Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pmahindrakar-oss committed May 22, 2024
1 parent 8089fff commit 49232a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/pkce/token_cache_keyring.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (t *TokenCacheKeyringProvider) GetToken() (*oauth2.Token, error) {
func NewTokenCacheKeyringProvider(serviceName, serviceUser string) *TokenCacheKeyringProvider {
condMutex := &sync.Mutex{}
return &TokenCacheKeyringProvider{
mu: &sync.Mutex{},
mu: condMutex,
cond: sync.NewCond(condMutex),
ServiceName: serviceName,
ServiceUser: serviceUser,
Expand Down

0 comments on commit 49232a2

Please sign in to comment.