Skip to content

Commit 407e68a

Browse files
committed
kvserver: reuse pt.isDeltaTrusted
Epic: none Release note: none
1 parent 51f1bbc commit 407e68a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/kv/kvserver/replica_application_result.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ func (r *Replica) stagePendingTruncationRaftMuLocked(pt pendingTruncation) {
506506
// v22.1 that added it, when all truncations were strongly coupled. It is not
507507
// safe to consider the log size delta trusted in this case. Conveniently,
508508
// this doesn't need any special casing.
509-
isDeltaTrusted := pt.isDeltaTrusted && r.shMu.raftTruncState.Index+1 == pt.expectedFirstIndex
509+
pt.isDeltaTrusted = pt.isDeltaTrusted && r.shMu.raftTruncState.Index+1 == pt.expectedFirstIndex
510510

511511
r.mu.Lock()
512512
r.shMu.raftTruncState = pt.RaftTruncatedState
@@ -515,7 +515,7 @@ func (r *Replica) stagePendingTruncationRaftMuLocked(pt pendingTruncation) {
515515
// TODO(pav-kv): should we distrust the log size if it goes negative?
516516
r.shMu.raftLogSize = max(r.shMu.raftLogSize+pt.logDeltaBytes, 0)
517517
r.shMu.raftLogLastCheckSize = max(r.shMu.raftLogLastCheckSize+pt.logDeltaBytes, 0)
518-
if !isDeltaTrusted {
518+
if !pt.isDeltaTrusted {
519519
r.shMu.raftLogSizeTrusted = false
520520
}
521521
r.mu.Unlock()

0 commit comments

Comments
 (0)