Skip to content

Commit f1d5957

Browse files
authored
Replace abort unless with debug abort unless
1 parent 383f91c commit f1d5957

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/blobstorage/vdisk/defrag/defrag_quantum.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ namespace NKikimr {
9494

9595
Compact();
9696

97-
// auto hugeStat = GetHugeStat();
98-
// Y_ABORT_UNLESS(hugeStat.LockedChunks.size() < 100);
97+
auto hugeStat = GetHugeStat();
98+
Y_DEBUG_ABORT_UNLESS(hugeStat.LockedChunks.size() < 100);
9999
}
100100

101101
Send(ParentActorId, new TEvDefragQuantumResult(std::move(stat)));

0 commit comments

Comments
 (0)