mirror of https://github.com/jackc/pgx.git
Fix flickering on TestConnectTimeoutStuckOnTLSHandshake
Ensure that even if the outer function finishes the goroutine can still send an error.pull/1372/head
parent
0aa681f3a3
commit
cd8b29b0fe
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue