lizhimins commented on code in PR #9256: URL: https://github.com/apache/rocketmq/pull/9256#discussion_r2113306293
########## store/src/main/java/org/apache/rocketmq/store/ConsumeQueue.java: ########## @@ -83,9 +85,20 @@ public ConsumeQueue( final String storePath, final int mappedFileSize, final MessageStore messageStore) { + this(topic, queueId, storePath, mappedFileSize, messageStore, (ConsumeQueueStore) messageStore.getQueueStore()); + } + + public ConsumeQueue( + final String topic, + final int queueId, + final String storePath, + final int mappedFileSize, + final MessageStore messageStore, + final ConsumeQueueStore consumeQueueStore) { Review Comment: This format looks a bit strange -- 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: commits-unsubscr...@rocketmq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org