Skip to content

Commit

Permalink
Merge pull request #18458 from fuweid/35-backport-18287
Browse files Browse the repository at this point in the history
[3.5] client/pkg/testutil: update interestingGoroutines
  • Loading branch information
ahrtr authored Aug 19, 2024
2 parents fa7ce71 + fd735dd commit 82a9561
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/pkg/testutil/leak.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ func interestingGoroutines() (gs []string) {
strings.Contains(stack, "runtime.MHeap_Scavenger") ||
strings.Contains(stack, "rcrypto/internal/boring.(*PublicKeyRSA).finalize") ||
strings.Contains(stack, "net.(*netFD).Close(") ||
strings.Contains(stack, "testing.(*T).Run") {
strings.Contains(stack, "testing.(*T).Run") ||
strings.Contains(stack, "crypto/tls.(*certCache).evict") {
continue
}
gs = append(gs, stack)
Expand Down

0 comments on commit 82a9561

Please sign in to comment.