We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7d0336 commit 8ecc8f6Copy full SHA for 8ecc8f6
1 file changed
pkg/util/leaktest/leaktest.go
@@ -58,8 +58,6 @@ func interestingGoroutines() map[int64]string {
58
strings.Contains(stack, "sentry-go.(*HTTPTransport).worker") ||
59
// Ignore the opensensus worker, which is created by the event exporter.
60
strings.Contains(stack, "go.opencensus.io/stats/view.(*worker).start") ||
61
- // Ignore pgconn which creates a goroutine to do an async cleanup.
62
- strings.Contains(stack, "github.com/jackc/pgconn.(*PgConn).asyncClose.func1") ||
63
// Seems to be gccgo specific.
64
(runtime.Compiler == "gccgo" && strings.Contains(stack, "testing.T.Parallel")) ||
65
// Ignore intentionally long-running logging goroutines that live for the
0 commit comments