Skip to content

Commit 93d47a0

Browse files
committed
nit
1 parent dea8f42 commit 93d47a0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ydb/core/tx/columnshard/normalizer/portion/leaked_blobs.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ class TLeakedBlobsNormalizerChanges: public INormalizerChanges {
5555
sb << "tablet=" << TabletId;
5656
sb << ";leaked_blob_count=" << Leaks.size();
5757
sb << ";leaked_blobs_size=" << LeakeadBlobsSize;
58-
sb << ";leaked_blobs=[" << JoinStrings(Leaks.begin(), Leaks.end(), ",") << "]";
58+
auto blobSampleEnd = Leaks.begin();
59+
for (ui64 i = 0; i < 10 && blobSampleEnd != Leaks.end(); ++i, ++blobSampleEnd) {
60+
}
61+
sb << ";leaked_blobs=[" << JoinStrings(Leaks.begin(), blobSampleEnd, ",") << "]";
5962
return sb;
6063
}
6164
};

0 commit comments

Comments
 (0)