File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4268,6 +4268,8 @@ void TPersQueue::CheckTxState(const TActorContext& ctx,
4268
4268
switch (tx.Kind ) {
4269
4269
case NKikimrPQ::TTransaction::KIND_DATA:
4270
4270
case NKikimrPQ::TTransaction::KIND_CONFIG:
4271
+ WriteTx (tx, NKikimrPQ::TTransaction::CALCULATED);
4272
+
4271
4273
tx.State = NKikimrPQ::TTransaction::CALCULATED;
4272
4274
PQ_LOG_D (" TxId " << tx.TxId <<
4273
4275
" , NewState " << NKikimrPQ::TTransaction_EState_Name (tx.State ));
@@ -4277,14 +4279,12 @@ void TPersQueue::CheckTxState(const TActorContext& ctx,
4277
4279
case NKikimrPQ::TTransaction::KIND_UNKNOWN:
4278
4280
Y_ABORT_UNLESS (false );
4279
4281
}
4280
- } else {
4281
- break ;
4282
4282
}
4283
4283
4284
- [[fallthrough]] ;
4284
+ break ;
4285
4285
4286
4286
case NKikimrPQ::TTransaction::CALCULATED:
4287
- Y_ABORT_UNLESS (! tx.WriteInProgress ,
4287
+ Y_ABORT_UNLESS (tx.WriteInProgress ,
4288
4288
" PQ %" PRIu64 " , TxId %" PRIu64,
4289
4289
TabletID (), tx.TxId );
4290
4290
You can’t perform that action at this time.
0 commit comments