Fix flickering on TestConnectTimeoutStuckOnTLSHandshake

Ensure that even if the outer function finishes the goroutine can still
send an error.
pull/1372/head
Jack Christensen 2022-09-24 12:54:59 -05:00
parent 0aa681f3a3
commit cd8b29b0fe
1 changed files with 1 additions and 2 deletions

View File

@ -235,8 +235,7 @@ func TestConnectTimeoutStuckOnTLSHandshake(t *testing.T) {
require.NoError(t, err)
defer ln.Close()
serverErrChan := make(chan error)
defer close(serverErrChan)
serverErrChan := make(chan error, 1)
go func() {
conn, err := ln.Accept()
if err != nil {