summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnaury <[email protected]>2023-07-14 12:33:09 +0300
committersnaury <[email protected]>2023-07-14 12:33:09 +0300
commit8b63adcc66c1eeb2e47fefd13387b95736ac3059 (patch)
treed1fd5b511512f8726e7d61cc4bc1764a2d352606
parentec06724da89b8e0acc05c3c7e1207fbadb8d12f7 (diff)
Fix spurious failure in conflicts cache on rollback KIKIMR-18742
-rw-r--r--ydb/core/tx/datashard/conflicts_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/datashard/conflicts_cache.h b/ydb/core/tx/datashard/conflicts_cache.h
index 61c2b1ea748..caebb6953bf 100644
--- a/ydb/core/tx/datashard/conflicts_cache.h
+++ b/ydb/core/tx/datashard/conflicts_cache.h
@@ -155,7 +155,7 @@ private:
TDistributedWrites DistributedWrites;
NTable::ITransactionObserverPtr TxObserver;
std::vector<TRollbackOp> RollbackOps;
- bool RollbackAllowed = false;
+ bool RollbackAllowed = true;
};
class TConflictsCache {