Skip to content

Commit c583feb

Browse files
committed
Revert "Ignore stored GCBarrierPreparation (ydb-platform#7473)"
This reverts commit ccf98e2.
1 parent cd9f24a commit c583feb

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

ydb/core/tx/columnshard/blobs_action/bs/blob_manager.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -140,14 +140,9 @@ bool TBlobManager::LoadState(IBlobManagerDb& db, const TTabletId selfTabletId) {
140140
if (!db.LoadLastGcBarrier(LastCollectedGenStep)) {
141141
return false;
142142
}
143-
//https://github.com/ydb-platform/ydb/issues/7468
144-
TGenStep storedGCBarrierPreparation;
145-
if (!db.LoadGCBarrierPreparation(storedGCBarrierPreparation)) {
143+
if (!db.LoadGCBarrierPreparation(GCBarrierPreparation)) {
146144
return false;
147145
}
148-
if (storedGCBarrierPreparation < LastCollectedGenStep) {
149-
AFL_WARN(NKikimrServices::TX_COLUMNSHARD_BLOBS_BS)("mem_genstep", GCBarrierPreparation)("last_genstep", LastCollectedGenStep)("db_genstep", storedGCBarrierPreparation);
150-
}
151146
AFL_VERIFY(!GCBarrierPreparation.Generation() || LastCollectedGenStep <= GCBarrierPreparation)("prepared", GCBarrierPreparation)("last", LastCollectedGenStep);
152147

153148
// Load the keep and delete queues

0 commit comments

Comments
 (0)