Skip to content

Commit 965f473

Browse files
authored
Fix RACE not handled correctly in bootstrapper (#11284)
1 parent 97340e3 commit 965f473

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ydb/core/tablet/bootstrapper.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,10 @@ class TBootstrapper : public TActorBootstrapped<TBootstrapper> {
225225
Become(&TThis::StateConnectLeader);
226226
return;
227227
}
228+
case NKikimrProto::RACE: {
229+
// State storage is working, but data is inconsistent
230+
[[fallthrough]];
231+
}
228232
case NKikimrProto::NODATA: {
229233
// We have state storage quorum and no known leader
230234
BeginNewRound();

0 commit comments

Comments
 (0)