-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
sync: update CI config files #2073
Conversation
Sounds like we need to update quic-go before merging. |
For the examples, yes. And that requires releasing v0.25. |
Ah I missed this was in the examples |
edc306f
to
2b98806
Compare
f04dbdc
to
4e67c27
Compare
4e67c27
to
52c2d1b
Compare
@@ -80,10 +81,10 @@ func runRound(t *testing.T, hosts []host.Host) { | |||
var wg sync.WaitGroup | |||
wg.Add(numStreams) | |||
for i := 0; i < numStreams; i++ { | |||
data := make([]byte, rand.Intn(maxDataLen)+1) | |||
rnd.Read(data) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
math/rand.Read
:
Read should not be called concurrently with any other Rand method.
No description provided.