From be156f6071d463b792ae2f5c01afb2a65de0f87c Mon Sep 17 00:00:00 2001 From: Romain Date: Thu, 10 Oct 2024 10:48:04 +0200 Subject: [PATCH] Ignore garbage collector flaky test --- pkg/proxy/fast/connpool_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/proxy/fast/connpool_test.go b/pkg/proxy/fast/connpool_test.go index 6ab4e9740..696e62a36 100644 --- a/pkg/proxy/fast/connpool_test.go +++ b/pkg/proxy/fast/connpool_test.go @@ -117,6 +117,9 @@ func TestConnPool_MaxIdleConn(t *testing.T) { } func TestGC(t *testing.T) { + // TODO: make the test stable if possible. + t.Skip("This test is flaky") + var isDestroyed bool pools := map[string]*connPool{} dialer := func() (net.Conn, error) {