mattrpav commented on code in PR #1499:
URL: https://github.com/apache/activemq/pull/1499#discussion_r2379592730
##########
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:
@jbonofre the sd.orderIndex.stopIterating() operates on the destination's
cursor by default. If there is a dedicated cursor, there is no need to stop
iterating, b/c it is a one-time use cursor.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact