diff options
author | alexvru <alexvru@ydb.tech> | 2023-12-15 18:30:03 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2023-12-15 23:24:32 +0300 |
commit | 575896e786912fe28f56c16df6edd2f14dcdafb5 (patch) | |
tree | 6f702b0a9a44f83e5137a1b26c161a60004a380a | |
parent | bc2f2a06573340aeee6019b3099434c768297798 (diff) | |
download | ydb-575896e786912fe28f56c16df6edd2f14dcdafb5.tar.gz |
Fix double hard gc KIKIMR-20525
-rw-r--r-- | ydb/core/blob_depot/data_trash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/blob_depot/data_trash.cpp b/ydb/core/blob_depot/data_trash.cpp index e33fc5905b1..1fca22e9165 100644 --- a/ydb/core/blob_depot/data_trash.cpp +++ b/ydb/core/blob_depot/data_trash.cpp @@ -265,8 +265,8 @@ namespace NKikimr::NBlobDepot { void TData::OnCommitHardGC(ui8 channel, ui32 groupId, TGenStep hardGenStep) { TRecordsPerChannelGroup& record = GetRecordsPerChannelGroup(channel, groupId); - record.ClearInFlight(this); record.HardGenStep = hardGenStep; + record.ClearInFlight(this); } void TData::TrimChannelHistory(ui8 channel, ui32 groupId, std::vector<TLogoBlobID> trashDeleted) { |