We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Looks like you are reading/writing to the status variable concurrently from two different goroutines
Read:
fast/fast.go
Line 24 in cd978a0
Write:
Line 56 in cd978a0
You can use the race detector to help: https://golang.org/doc/articles/race_detector.html#Introduction
The text was updated successfully, but these errors were encountered:
You might consider using the select statement on the ticker and KbpsChan to make sure the reads/writes are synchronized.
Sorry, something went wrong.
@djherbis ty i will check asap
No branches or pull requests
Looks like you are reading/writing to the status variable concurrently from two different goroutines
Read:
fast/fast.go
Line 24 in cd978a0
Write:
fast/fast.go
Line 56 in cd978a0
You can use the race detector to help:
https://golang.org/doc/articles/race_detector.html#Introduction
The text was updated successfully, but these errors were encountered: