mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
http3: close the connection when closing the roundtripper (#3873)
This commit is contained in:
parent
c96fbd2e4a
commit
9237dbb167
3 changed files with 8 additions and 3 deletions
|
@ -239,7 +239,12 @@ func (r *RoundTripper) Close() error {
|
||||||
}
|
}
|
||||||
r.clients = nil
|
r.clients = nil
|
||||||
if r.transport != nil {
|
if r.transport != nil {
|
||||||
r.transport.Close()
|
if err := r.transport.Close(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := r.transport.Conn.Close(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
r.transport = nil
|
r.transport = nil
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -98,7 +98,7 @@ var _ = Describe("HTTP3 Server hotswap test", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
AfterEach(func() {
|
AfterEach(func() {
|
||||||
rt.Close()
|
Expect(rt.Close()).NotTo(HaveOccurred())
|
||||||
Expect(ln.Close()).NotTo(HaveOccurred())
|
Expect(ln.Close()).NotTo(HaveOccurred())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -106,7 +106,7 @@ var _ = Describe("HTTP tests", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
AfterEach(func() {
|
AfterEach(func() {
|
||||||
rt.Close()
|
Expect(rt.Close()).NotTo(HaveOccurred())
|
||||||
Expect(server.Close()).NotTo(HaveOccurred())
|
Expect(server.Close()).NotTo(HaveOccurred())
|
||||||
Eventually(stoppedServing).Should(BeClosed())
|
Eventually(stoppedServing).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue