mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
fix flaky proxy shutdown test
This commit is contained in:
parent
f9da93ca86
commit
0000fe6de7
1 changed files with 5 additions and 2 deletions
|
@ -59,8 +59,11 @@ var _ = Describe("QUIC Proxy", func() {
|
||||||
// sometimes it takes a while for the OS to free the port
|
// sometimes it takes a while for the OS to free the port
|
||||||
Eventually(func() error {
|
Eventually(func() error {
|
||||||
ln, err := net.ListenUDP("udp", addr)
|
ln, err := net.ListenUDP("udp", addr)
|
||||||
defer ln.Close()
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
}
|
||||||
|
ln.Close()
|
||||||
|
return nil
|
||||||
}).ShouldNot(HaveOccurred())
|
}).ShouldNot(HaveOccurred())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue