Skip to content

Commit 33c4b00

Browse files
authored
EXT-1711 Fix TSharedPageCache using empty TraceId (#29187)
1 parent 24a41e4 commit 33c4b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/tablet_flat/shared_sausagecache.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ class TSharedPageCache : public TActorBootstrapped<TSharedPageCache> {
10641064
auto *fetch = new NBlockIO::TEvFetch(request.Priority, request.PageCollection, std::move(pages), bytes);
10651065
if (cookie == EBlockIOFetchTypeCookie::AsyncQueue || cookie == EBlockIOFetchTypeCookie::ScanQueue) {
10661066
// Note: queued requests can fetch multiple times, so copy trace id
1067-
fetch->TraceId = request.TraceId.GetTraceId();
1067+
fetch->TraceId = NWilson::TTraceId(request.TraceId);
10681068
} else {
10691069
fetch->TraceId = std::move(request.TraceId);
10701070
}

0 commit comments

Comments
 (0)