mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
fix race condition in multiplex integration test (#4136)
This commit is contained in:
parent
5311f8178c
commit
6eb0caca1a
1 changed files with 3 additions and 0 deletions
|
@ -251,6 +251,9 @@ var _ = Describe("Multiplexing", func() {
|
||||||
b := make([]byte, packetLen)
|
b := make([]byte, packetLen)
|
||||||
rand.Read(b[1:]) // keep the first byte set to 0, so it's not classified as a QUIC packet
|
rand.Read(b[1:]) // keep the first byte set to 0, so it's not classified as a QUIC packet
|
||||||
_, err := tr1.WriteTo(b, tr2.Conn.LocalAddr())
|
_, err := tr1.WriteTo(b, tr2.Conn.LocalAddr())
|
||||||
|
if ctx.Err() != nil { // ctx canceled while Read was executing
|
||||||
|
return
|
||||||
|
}
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
sentPackets.Add(1)
|
sentPackets.Add(1)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue