Skip to content

Commit 9b729cf

Browse files
author
kvk1920
committed
YT-24868: Fix attribute filter logging
commit_hash:8996ef4edbac442c49c715386063883e7cb93ab5
1 parent d44f3d4 commit 9b729cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

yt/yt/core/ytree/attribute_filter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ void FormatValue(
510510

511511
TShrunkAttributeFilterView MakeShrunkFormattableView(
512512
const TAttributeFilter& attributeFilter,
513-
size_t limit)
513+
i64 limit)
514514
{
515515
return {attributeFilter, limit};
516516
}

yt/yt/core/ytree/attribute_filter.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ void FormatValue(
175175
struct TShrunkAttributeFilterView
176176
{
177177
const TAttributeFilter& AttributeFilter;
178-
const size_t Limit;
178+
const i64 Limit;
179179
};
180180

181181
TShrunkAttributeFilterView MakeShrunkFormattableView(
182182
const TAttributeFilter& attributeFilter,
183-
size_t limit);
183+
i64 limit);
184184

185185
void FormatValue(
186186
TStringBuilderBase* builder,

0 commit comments

Comments
 (0)