sashapolo commented on code in PR #5005:
URL: https://github.com/apache/ignite-3/pull/5005#discussion_r1906989636
##########
modules/raft/src/main/java/org/apache/ignite/raft/jraft/storage/impl/LogManagerImpl.java:
##########
@@ -821,9 +824,10 @@ public long getTerm(final long index) {
if (index > this.lastLogIndex || index < this.firstLogIndex) {
return 0;
}
- final LogEntry entry = getEntryFromMemory(index);
Review Comment:
Why is it being cleared all the time? Maybe we should have solved this
problem instead?
--
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]