NO-JIRA small tweak on javadoc

This commit is contained in:
Clebert Suconic 2022-10-11 15:42:36 -04:00
parent 5343c97c7d
commit e951ce67ca
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class OpenWireFrameParser extends ByteToMessageDecoder {
logger.trace("Creating a heapBuffer sized as {} as it is beyond {} chunk limit", bufferSize, openwireMaxPacketChunkSize);
}
// we will use a heap buffer for large frames.
// to avoid competing for resources with the broker on native messages.
// to avoid competing for resources with the broker on native buffers.
// to save the broker in case users send huge messages in openwire.
outBuffer = UnpooledByteBufAllocator.DEFAULT.heapBuffer(bufferSize);
}