Skip to content

[BUG]Memory leak in test code for ReactorNettyHttpClientTest due to bug in com.azure.cosmos.implementation.directconnectivity.TcpServerMock.rntbd.ServerRntbdRequestDecoder #47268

Description

@FabianMeiswinkel

Describe the bug
Test logs show the following netty buffer leak - likely caused in TcpMockServer. Pelase investigate and propose a fix.

2025-11-13T19:38:27.2272564Z 2025-11-13 19:38:26,901 [main] INFO CosmosNettyLeakDetectorFactory - LEAK DETECTION EVALUATION for test class com.azure.cosmos.implementation.http.ReactorNettyHttpClientTest
2025-11-13T19:38:28.2214264Z 2025-11-13 19:38:28,215 [main] ERROR CosmosNettyLeakDetectorFactory - NETTY LEAKS detected in test class: com.azure.cosmos.implementation.http.ReactorNettyHttpClientTest
2025-11-13T19:38:28.2215188Z
2025-11-13T19:38:28.2215514Z
2025-11-13T19:38:28.2215778Z NETTY LEAK (traced) type=ByteBuf records=
2025-11-13T19:38:28.2215994Z
2025-11-13T19:38:28.2216204Z Recent access records:
2025-11-13T19:38:28.2216529Z #1:
2025-11-13T19:38:28.2216964Z io.netty.buffer.AdvancedLeakAwareByteBuf.getUnsignedInt(AdvancedLeakAwareByteBuf.java:197)
2025-11-13T19:38:28.2217486Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.getUnadjustedFrameLength(LengthFieldBasedFrameDecoder.java:468)
2025-11-13T19:38:28.2217942Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:410)
2025-11-13T19:38:28.2218417Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:333)
2025-11-13T19:38:28.2218922Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2219393Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2219864Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2220602Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2221579Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2222359Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2222793Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T19:38:28.2223267Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2224272Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2224789Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2225235Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2225696Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2226165Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2226982Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2228154Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2228712Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2229174Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2229740Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2230216Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2230715Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2231155Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2231589Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2232011Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2232392Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2232852Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2233293Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2233741Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2234143Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2234510Z #2:
2025-11-13T19:38:28.2234998Z io.netty.buffer.AdvancedLeakAwareByteBuf.order(AdvancedLeakAwareByteBuf.java:71)
2025-11-13T19:38:28.2235567Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.getUnadjustedFrameLength(LengthFieldBasedFrameDecoder.java:455)
2025-11-13T19:38:28.2236083Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:410)
2025-11-13T19:38:28.2236573Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:333)
2025-11-13T19:38:28.2237053Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2237496Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2237952Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2238424Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2238903Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2239677Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2240556Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T19:38:28.2241220Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2241841Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2242888Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2243580Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2244091Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2244547Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2244979Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2245398Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2245950Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2246412Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2246835Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2247233Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2247652Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2248243Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2249101Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2249545Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2249962Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2250431Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2250914Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2251525Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2252263Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2252587Z #3:
2025-11-13T19:38:28.2253168Z io.netty.buffer.AbstractPooledDerivedByteBuf.deallocate(AbstractPooledDerivedByteBuf.java:94)
2025-11-13T19:38:28.2253633Z io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(AbstractReferenceCountedByteBuf.java:111)
2025-11-13T19:38:28.2254063Z io.netty.buffer.AbstractReferenceCountedByteBuf.release(AbstractReferenceCountedByteBuf.java:101)
2025-11-13T19:38:28.2254442Z io.netty.buffer.WrappedByteBuf.release(WrappedByteBuf.java:1037)
2025-11-13T19:38:28.2254848Z io.netty.buffer.SimpleLeakAwareByteBuf.release(SimpleLeakAwareByteBuf.java:102)
2025-11-13T19:38:28.2255262Z io.netty.buffer.AdvancedLeakAwareByteBuf.release(AdvancedLeakAwareByteBuf.java:942)
2025-11-13T19:38:28.2255665Z io.netty.handler.codec.ByteToMessageDecoder$1.cumulate(ByteToMessageDecoder.java:111)
2025-11-13T19:38:28.2256072Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:288)
2025-11-13T19:38:28.2256526Z com.azure.cosmos.implementation.directconnectivity.TcpServerMock.rntbd.ServerRntbdRequestDecoder.channelRead(ServerRntbdRequestDecoder.java:32)
2025-11-13T19:38:28.2256939Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2257356Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2257763Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2258329Z io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
2025-11-13T19:38:28.2258751Z io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:333)
2025-11-13T19:38:28.2259153Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:455)
2025-11-13T19:38:28.2259552Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2260288Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2260910Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2261414Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2261831Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T19:38:28.2262313Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2263298Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2264355Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2265182Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2265813Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2266387Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2266965Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2267531Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2268055Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2268615Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2269180Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2270022Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2270790Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2271381Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2271890Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2272353Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2272808Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2273679Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2274314Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2274825Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2275269Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2275635Z #4:
2025-11-13T19:38:28.2276035Z io.netty.buffer.AbstractPooledDerivedByteBuf.deallocate(AbstractPooledDerivedByteBuf.java:94)
2025-11-13T19:38:28.2276637Z io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(AbstractReferenceCountedByteBuf.java:111)
2025-11-13T19:38:28.2277248Z io.netty.buffer.AbstractReferenceCountedByteBuf.release(AbstractReferenceCountedByteBuf.java:101)
2025-11-13T19:38:28.2277747Z io.netty.buffer.WrappedByteBuf.release(WrappedByteBuf.java:1037)
2025-11-13T19:38:28.2278237Z io.netty.buffer.SimpleLeakAwareByteBuf.release(SimpleLeakAwareByteBuf.java:102)
2025-11-13T19:38:28.2278945Z io.netty.buffer.AdvancedLeakAwareByteBuf.release(AdvancedLeakAwareByteBuf.java:942)
2025-11-13T19:38:28.2279484Z io.netty.handler.codec.ByteToMessageDecoder.expandCumulation(ByteToMessageDecoder.java:572)
2025-11-13T19:38:28.2280036Z io.netty.handler.codec.ByteToMessageDecoder$1.cumulate(ByteToMessageDecoder.java:103)
2025-11-13T19:38:28.2280537Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:288)
2025-11-13T19:38:28.2281117Z com.azure.cosmos.implementation.directconnectivity.TcpServerMock.rntbd.ServerRntbdRequestDecoder.channelRead(ServerRntbdRequestDecoder.java:32)
2025-11-13T19:38:28.2281631Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2282092Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2282554Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2283272Z io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346)
2025-11-13T19:38:28.2283838Z io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:333)
2025-11-13T19:38:28.2284353Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:455)
2025-11-13T19:38:28.2285129Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2285770Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2286314Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2286863Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2287328Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T19:38:28.2287888Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2288321Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2288873Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2289371Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2290085Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2290917Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2291638Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2292125Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2292563Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2292996Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2293411Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2293818Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2294242Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2294832Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2295423Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2295963Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2296424Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2297142Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2297641Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2298287Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2298757Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2299160Z #5:
2025-11-13T19:38:28.2299680Z io.netty.buffer.AdvancedLeakAwareByteBuf.retainedSlice(AdvancedLeakAwareByteBuf.java:95)
2025-11-13T19:38:28.2300228Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.extractFrame(LengthFieldBasedFrameDecoder.java:502)
2025-11-13T19:38:28.2300760Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:440)
2025-11-13T19:38:28.2301278Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:333)
2025-11-13T19:38:28.2301792Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2302378Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2302946Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2303492Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2303951Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2304381Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2304743Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T19:38:28.2473538Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2481702Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2484154Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2484751Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2485275Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2485990Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2486974Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2487566Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2488215Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2488750Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2489315Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2489837Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2490330Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2490775Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2491258Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2491696Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2492070Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2492480Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2492863Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2493527Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2493916Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2494237Z #6:
2025-11-13T19:38:28.2494683Z io.netty.buffer.AdvancedLeakAwareByteBuf.skipBytes(AdvancedLeakAwareByteBuf.java:533)
2025-11-13T19:38:28.2495139Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:435)
2025-11-13T19:38:28.2495594Z io.netty.handler.codec.LengthFieldBasedFrameDecoder.decode(LengthFieldBasedFrameDecoder.java:333)
2025-11-13T19:38:28.2496057Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2496521Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2496973Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2497431Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2498059Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2498558Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2498967Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T19:38:28.2499381Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2499773Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2500251Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2500721Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2501203Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2501665Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2502100Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2502550Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2502970Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2503397Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2503818Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2504220Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2504636Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2505029Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2505465Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2505952Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2506388Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2506888Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2507345Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2507829Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2508597Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2509047Z #7:
2025-11-13T19:38:28.2509447Z Hint: 'ServerRntbdRequestFramer#0' will handle the message from this point.
2025-11-13T19:38:28.2509858Z io.netty.channel.DefaultChannelPipeline.touch(DefaultChannelPipeline.java:115)
2025-11-13T19:38:28.2510476Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:417)
2025-11-13T19:38:28.2510869Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2511340Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1519)
2025-11-13T19:38:28.2511731Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2512102Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2512538Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2512973Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2513379Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2513834Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2514420Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2514887Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2515310Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2515728Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2517513Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2518197Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2519728Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2520297Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2520765Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2521208Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2521626Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2522070Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2522634Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2523092Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2523588Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2523925Z #8:
2025-11-13T19:38:28.2524403Z io.netty.buffer.AdvancedLeakAwareByteBuf.internalNioBuffer(AdvancedLeakAwareByteBuf.java:737)
2025-11-13T19:38:28.2524894Z io.netty.handler.ssl.SslHandler.toByteBuffer(SslHandler.java:1650)
2025-11-13T19:38:28.2525346Z io.netty.handler.ssl.SslHandler.access$300(SslHandler.java:169)
2025-11-13T19:38:28.2525828Z io.netty.handler.ssl.SslHandler$SslEngineType$1.unwrap(SslHandler.java:223)
2025-11-13T19:38:28.2526287Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1486)
2025-11-13T19:38:28.2526701Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2527110Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2527632Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2528198Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2528761Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2529237Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2529868Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2530340Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2530802Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2531261Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2531725Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2532195Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2532635Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2533054Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2533609Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2534178Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2534570Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2535007Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2535420Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2535848Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2536218Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2536520Z #9:
2025-11-13T19:38:28.2537443Z io.netty.buffer.AdvancedLeakAwareByteBuf.nioBufferCount(AdvancedLeakAwareByteBuf.java:707)
2025-11-13T19:38:28.2537901Z io.netty.handler.ssl.SslHandler.toByteBuffer(SslHandler.java:1650)
2025-11-13T19:38:28.2538399Z io.netty.handler.ssl.SslHandler.access$300(SslHandler.java:169)
2025-11-13T19:38:28.2538841Z io.netty.handler.ssl.SslHandler$SslEngineType$1.unwrap(SslHandler.java:223)
2025-11-13T19:38:28.2539247Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1486)
2025-11-13T19:38:28.2539669Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2540080Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2540533Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2540990Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2541419Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2541880Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2542349Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2542791Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2543219Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2543687Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2544225Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2544709Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2545170Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2545724Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2546376Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2546811Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2547219Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2547666Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2548091Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2548509Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2548850Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2549159Z Created at:
2025-11-13T19:38:28.2549570Z io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(PooledByteBufAllocator.java:410)
2025-11-13T19:38:28.2549984Z io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:188)
2025-11-13T19:38:28.2550391Z io.netty.buffer.AbstractByteBufAllocator.directBuffer(AbstractByteBufAllocator.java:179)
2025-11-13T19:38:28.2550910Z io.netty.handler.ssl.SslHandler.allocate(SslHandler.java:2421)
2025-11-13T19:38:28.2551319Z io.netty.handler.ssl.SslHandler.unwrap(SslHandler.java:1481)
2025-11-13T19:38:28.2551717Z io.netty.handler.ssl.SslHandler.decodeJdkCompatible(SslHandler.java:1377)
2025-11-13T19:38:28.2552103Z io.netty.handler.ssl.SslHandler.decode(SslHandler.java:1428)
2025-11-13T19:38:28.2552562Z io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:530)
2025-11-13T19:38:28.2553001Z io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:469)
2025-11-13T19:38:28.2553426Z io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:290)
2025-11-13T19:38:28.2553896Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444)
2025-11-13T19:38:28.2554354Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2554825Z io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412)
2025-11-13T19:38:28.2555274Z io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1357)
2025-11-13T19:38:28.2555817Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440)
2025-11-13T19:38:28.2556275Z io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420)
2025-11-13T19:38:28.2556708Z io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:868)
2025-11-13T19:38:28.2557138Z io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
2025-11-13T19:38:28.2557546Z io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:796)
2025-11-13T19:38:28.2557963Z io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:732)
2025-11-13T19:38:28.2558376Z io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:658)
2025-11-13T19:38:28.2558759Z io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562)
2025-11-13T19:38:28.2559201Z io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:998)
2025-11-13T19:38:28.2559604Z io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
2025-11-13T19:38:28.2560028Z io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
2025-11-13T19:38:28.2560403Z java.lang.Thread.run(Thread.java:750)
2025-11-13T19:38:28.2560765Z : 6 leak records were discarded because they were duplicates

Metadata

Metadata

Assignees

Labels

ClientThis issue points to a problem in the data-plane of the library.CosmosService AttentionWorkflow: This issue is responsible by Azure service team.needs-team-attentionWorkflow: This issue needs attention from Azure service team or SDK team

Type

No type

Fields

No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions