-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix data races #694
Fix data races #694
Conversation
wtf, how did this merge go bad |
Quality Gate passedIssues Measures |
This reverts commit 002fb9f.
@adambabik I'm puzzled about what went wrong when I used GitHub's Could you please take a look? I can't get the docker tests to pass at all. I suspect some of your changes got lost? |
@sourishkrout yeah, something went off. I didn't dig into that, but I created a new branch and rebased instead. I also dug a bit more into flaky tests in Docker and updated a couple. Let's review #697 and try to merge again. |
This PR adds `go vet` call, including [`checklocks`](https://pkg.go.dev/gvisor.dev/gvisor/tools/checklocks), in `make lint`. It also fixes data races found using `RACE=true make test/execute`. Retrying reverted #694.
This PR adds
go vet
call, includingchecklocks
, inmake lint
. It also fixes data races found usingRACE=true make test/execute
.