Skip to content

Commit 0e05fd9

Browse files
authored
Fix mirror-3of4 data merger problem (#20674) (#20790)
2 parents 5cfe5d6 + b95fee6 commit 0e05fd9

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)