pixelherodev commented on PR #556:
URL: https://github.com/apache/arrow-go/pull/556#issuecomment-3469985819
The buffer pool used in that test has
```go
New: func() interface{} {
buf := memory.NewResizableBuffer(suite.mem)
runtime.SetFinalizer(buf, func(obj *memory.Buffer) { obj.Release() })
return buf
}
```
This is not reliable. It depends upon the pool getting GCed _before the test
finishes_.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]