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
Running go test with -race flag fails with detecting a race. The go routine for the handler calling Next() is accessing the same variable as the call to Abort() after a timeout.
Will be happy to open a PR if I get sometime to address this.
How to reproduce
Run go test -race ./... on the root level of the project
Expected
Tests to pass, and safe concurrent access to variables
Running
go test
with-race
flag fails with detecting a race. The go routine for the handler callingNext()
is accessing the same variable as the call toAbort()
after a timeout.Will be happy to open a PR if I get sometime to address this.
How to reproduce
Run
go test -race ./...
on the root level of the projectExpected
Tests to pass, and safe concurrent access to variables
Result
The text was updated successfully, but these errors were encountered: