http3: close the connection when closing the roundtripper (#3873)

This commit is contained in:
Glonee 2023-06-01 16:06:13 +08:00 committed by GitHub
parent c96fbd2e4a
commit 9237dbb167
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View file

@ -98,7 +98,7 @@ var _ = Describe("HTTP3 Server hotswap test", func() {
})
AfterEach(func() {
rt.Close()
Expect(rt.Close()).NotTo(HaveOccurred())
Expect(ln.Close()).NotTo(HaveOccurred())
})

View file

@ -106,7 +106,7 @@ var _ = Describe("HTTP tests", func() {
})
AfterEach(func() {
rt.Close()
Expect(rt.Close()).NotTo(HaveOccurred())
Expect(server.Close()).NotTo(HaveOccurred())
Eventually(stoppedServing).Should(BeClosed())
})