diff --git a/common/reporter/stack/root.go b/common/reporter/stack/root.go index 8a3a69dc..d979407e 100644 --- a/common/reporter/stack/root.go +++ b/common/reporter/stack/root.go @@ -22,7 +22,7 @@ type Trace []Call var pcStackPool = sync.Pool{ New: func() any { - pcs := make([]uintptr, 1000) + pcs := make([]uintptr, 32) return &pcs }, }