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
ctx is overwritten while a goroutine could possibly read from it, breaking go test -race. You can reproduce by simply running go test -race ./... from the repository's base directory.
the read is here and the write is here
This can be fixed by using a differently named variable here instead of overwriting ctx and changing its subsequent usage.
The text was updated successfully, but these errors were encountered:
ctx
is overwritten while a goroutine could possibly read from it, breakinggo test -race
. You can reproduce by simply runninggo test -race ./...
from the repository's base directory.the read is here and the write is here
This can be fixed by using a differently named variable here instead of overwriting
ctx
and changing its subsequent usage.The text was updated successfully, but these errors were encountered: