File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -506,7 +506,7 @@ func (r *Replica) stagePendingTruncationRaftMuLocked(pt pendingTruncation) {
506
506
// v22.1 that added it, when all truncations were strongly coupled. It is not
507
507
// safe to consider the log size delta trusted in this case. Conveniently,
508
508
// 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
510
510
511
511
r .mu .Lock ()
512
512
r .shMu .raftTruncState = pt .RaftTruncatedState
@@ -515,7 +515,7 @@ func (r *Replica) stagePendingTruncationRaftMuLocked(pt pendingTruncation) {
515
515
// TODO(pav-kv): should we distrust the log size if it goes negative?
516
516
r .shMu .raftLogSize = max (r .shMu .raftLogSize + pt .logDeltaBytes , 0 )
517
517
r .shMu .raftLogLastCheckSize = max (r .shMu .raftLogLastCheckSize + pt .logDeltaBytes , 0 )
518
- if ! isDeltaTrusted {
518
+ if ! pt . isDeltaTrusted {
519
519
r .shMu .raftLogSizeTrusted = false
520
520
}
521
521
r .mu .Unlock ()
You can’t perform that action at this time.
0 commit comments