mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
fix a race condition in a session test
We were relying on the run-loop to set handshakeComplete to true, while at the same time sending packets. select doesn't guarantee the order of execution when multiple cases can run. The fix is setting handshakeComplete to true directly.
This commit is contained in:
parent
1060582a18
commit
f43e732e4b
1 changed files with 1 additions and 1 deletions
|
@ -1377,7 +1377,7 @@ var _ = Describe("Session", func() {
|
|||
})
|
||||
|
||||
It("ignores undecryptable packets after the handshake is complete", func() {
|
||||
close(aeadChanged)
|
||||
sess.handshakeComplete = true
|
||||
go sess.run()
|
||||
sendUndecryptablePackets()
|
||||
Consistently(sess.undecryptablePackets).Should(BeEmpty())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue