-
Notifications
You must be signed in to change notification settings - Fork 6
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
Data Race in buildServerState #3
Comments
This is a similar problem, on another field
|
I think the problem is that The second one I'm not sure about yet. |
This comment seems to indicate that the assumption is that we are not modifying shared state outside of a lock, however the race detector (while running on the Consul test suite) seems to indicate that this field is not actually a copy. This write is racing with another goroutine that is trying to read the address.
The text was updated successfully, but these errors were encountered: