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 goroutine started after receiving an inv also spawns its own goroutines
and increments the waitgroup counter. This is invalid waitgroup usage as it
could occur concurrently with or after the call to Wait(). Removing the
superfluous outer goroutine fixes this issue.
0 commit comments