introduce a http3.RoundTripOpt to prevent closing of request stream (#3411)

This commit is contained in:
Marten Seemann 2022-05-20 11:54:31 +02:00 committed by GitHub
parent 6511723c28
commit de5f08171b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 107 additions and 73 deletions

View file

@ -20,7 +20,7 @@ type mockClient struct {
closed bool
}
func (m *mockClient) RoundTrip(req *http.Request) (*http.Response, error) {
func (m *mockClient) RoundTripOpt(req *http.Request, _ RoundTripOpt) (*http.Response, error) {
return &http.Response{Request: req}, nil
}