Revert "fix CI fail for connection log test"

This commit is contained in:
Ming Deng 2020-08-04 21:37:46 +08:00 committed by GitHub
parent 787bb60b42
commit 1961c1e441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@ import (
"net"
"os"
"testing"
"time"
)
// ConnTCPListener takes a TCP listener and accepts n TCP connections
@ -74,7 +73,7 @@ func TestReconnect(t *testing.T) {
select {
case second := <-newConns:
second.Close()
case <-time.After(5 * time.Second):
default:
t.Error("Did not reconnect")
}
}