• Daniel Morsing's avatar
    net/http: handle close/response race more gracefully · 39377013
    Daniel Morsing authored
    There was a logical race in Transport.RoundTrip where a roundtrip with
    a pending response would race with the channel for the connection
    closing. This usually happened for responses with connection: close
    and no body.
    
    We handled this race by reading the close channel, setting a timer
    for 100ms and if no response was returned before then, we would then
    return an error.
    
    This put a lower bound on how fast a connection could fail. We couldn't
    fail a request faster than 100ms.
    
    Reordering the channel operations gets rid of the logical race. If
    the readLoop causes the connection to be closed, it would have put
    its response into the return channel already and we can fetch it with
    a non-blocking receive.
    
    Change-Id: Idf09e48d7a0453d7de0120d3055d0ce5893a5428
    Reviewed-on: https://go-review.googlesource.com/1787Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
    39377013
Name
Last commit
Last update
..
cgi Loading commit data...
cookiejar Loading commit data...
fcgi Loading commit data...
httptest Loading commit data...
httputil Loading commit data...
internal Loading commit data...
pprof Loading commit data...
testdata Loading commit data...
client.go Loading commit data...
client_test.go Loading commit data...
cookie.go Loading commit data...
cookie_test.go Loading commit data...
doc.go Loading commit data...
example_test.go Loading commit data...
export_test.go Loading commit data...
filetransport.go Loading commit data...
filetransport_test.go Loading commit data...
fs.go Loading commit data...
fs_test.go Loading commit data...
header.go Loading commit data...
header_test.go Loading commit data...
http_test.go Loading commit data...
jar.go Loading commit data...
lex.go Loading commit data...
lex_test.go Loading commit data...
main_test.go Loading commit data...
npn_test.go Loading commit data...
proxy_test.go Loading commit data...
race.go Loading commit data...
range_test.go Loading commit data...
readrequest_test.go Loading commit data...
request.go Loading commit data...
request_test.go Loading commit data...
requestwrite_test.go Loading commit data...
response.go Loading commit data...
response_test.go Loading commit data...
responsewrite_test.go Loading commit data...
serve_test.go Loading commit data...
server.go Loading commit data...
sniff.go Loading commit data...
sniff_test.go Loading commit data...
status.go Loading commit data...
transfer.go Loading commit data...
transfer_test.go Loading commit data...
transport.go Loading commit data...
transport_test.go Loading commit data...
triv.go Loading commit data...