You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function is spawning a goroutine which will then idle on the sending to the channel if the main goroutine executes the select statement before authenticator.invokeRequestTokenData() returns. The problem is default on L225 will exit the select statements scope before receiving the new token.
There appears to be a goroutine leak happening in iam_authenticator.go.
The function is spawning a goroutine which will then idle on the sending to the channel if the main goroutine executes the select statement before
authenticator.invokeRequestTokenData()
returns. The problem isdefault
on L225 will exit the select statements scope before receiving the new token.Profile:
leak.pdf
The text was updated successfully, but these errors were encountered: