]> Cypherpunks repositories - gostls13.git/commit
net/http: eliminate a goroutine leak in (*persistConn.addTLS)
authorBryan C. Mills <bcmills@google.com>
Wed, 20 Sep 2023 14:44:06 +0000 (10:44 -0400)
committerGopher Robot <gobot@golang.org>
Wed, 20 Sep 2023 15:24:59 +0000 (15:24 +0000)
commitb6e83f35daaa8ce0dfae3e5f93c78d0cb344a2b0
tree985e8eb11ff7d854cf2a094a7a685b598463a7fa
parent2fba42cb52e203d09878b385034b625788275663
net/http: eliminate a goroutine leak in (*persistConn.addTLS)

In case of a handshake timeout, the goroutine running addTLS
closes the underlying connection, which should unblock the call
to tlsConn.HandshakeContext. However, it didn't then wait for
HandshakeContext to actually return.

I thought this might have something to do with #57602, but as
far as I can tell it does not. Still, it seems best to avoid the leak:
if tracing is enabled we emit a TLSHandshakeDone event, and it seems
misleading to produce that event when the handshake is still in
progress.

For #57602.

Change-Id: Ibfc0cf4ef8df2ccf11d8897f23d7d79ee482d5fb
Reviewed-on: https://go-review.googlesource.com/c/go/+/529755
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Bryan Mills <bcmills@google.com>
Commit-Queue: Bryan Mills <bcmills@google.com>
src/net/http/transport.go