Results 3 comments of Maplejw

I also have this problem. I set -Dio.netty.leakDetection.level=PARANOID. reactory-netty version: 1.2.3 ``` 2025-05-28 03:31:50.252 ERROR , [ reactor-http-epoll-6] i.n.util.ResourceLeakDetector: LEAK: ByteBuf.release() was not called before it's garbage-collected. See https://netty.io/wiki/reference-counted-objects.html for...

@violetagg My apologies,I use SCG version: 2024.0.1 This is code about filter ``` package igg.report.gateway.filter; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.igg.boot.framework.exception.HttpSystemException; import com.igg.boot.framework.exception.HttpSystemExceptionCode; import igg.report.gateway.cache.AppInfo; import igg.report.gateway.constant.EncryptEnum; import igg.report.gateway.constant.GatewayConstant; import...

> [@Maplejw](https://github.com/Maplejw), I believe you need to release `CachedBodyOutputMessage` in your' ServerHttpRequestDecorator's getBody () method as well. > > @Override > public Flux getBody() { > return outputMessage.getBody() > .doFinally(s...