cshannon commented on code in PR #1499: URL: https://github.com/apache/activemq/pull/1499#discussion_r2379608520
########## activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/KahaDBStore.java: ########## @@ -796,7 +803,11 @@ public void execute(Transaction tx) throws Exception { break; } } - sd.orderIndex.stoppedIterating(); + + // The sd.orderIndex uses the destination's cursor + if(!messageRecoveryContext.isUseDedicatedCursor()) { Review Comment: @mattrpav is right, the other cursor that is part of the StoredDestination is stateful so that we can page off messages as they come in. The dedicated is meant to be stateless so there's no need to call that -- 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: gitbox-unsubscr...@activemq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For additional commands, e-mail: gitbox-h...@activemq.apache.org For further information, visit: https://activemq.apache.org/contact