Skip to content

Commit 5ffb8d7

Browse files
authored
Fix mirror-3of4 data merger problem (#20674)
1 parent 9adb3a0 commit 5ffb8d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/blobstorage/vdisk/hulldb/generic/blobstorage_hulldatamerger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ namespace NKikimr {
166166

167167
bool producingHugeBlob = false;
168168

169-
if (inMemParts.Empty() && smallDiskParts.Empty()) { // we only have huge blobs, so keep it this way
169+
if (inMemParts.Empty() && smallDiskParts.Empty() && !hugeDiskParts.Empty()) { // we only have huge blobs, so keep it this way
170170
producingHugeBlob = true;
171171
} else {
172172
producingHugeBlob = targetingHugeBlob;

0 commit comments

Comments
 (0)