aboutsummaryrefslogtreecommitdiffstats
path: root/yt
diff options
context:
space:
mode:
authornadya02 <nadya02@yandex-team.com>2024-07-19 09:53:06 +0300
committernadya02 <nadya02@yandex-team.com>2024-07-19 10:06:13 +0300
commitcc6fbb0ddda7fdd63033840536eea785946b40d9 (patch)
tree7d1d9682f98b6bbe1450e9d23092749dbc83673a /yt
parent5afe3c60f9b85f4a8585e5a22f16db5188a40a19 (diff)
downloadydb-cc6fbb0ddda7fdd63033840536eea785946b40d9.tar.gz
Set Allocation tags in TTraceContext::CreateChild method
fix ce0b0af208c8f662a664cb99f5b3fead5245323a
Diffstat (limited to 'yt')
-rw-r--r--yt/yt/core/tracing/trace_context.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/yt/yt/core/tracing/trace_context.cpp b/yt/yt/core/tracing/trace_context.cpp
index 92f760bdee..8fb08c5dbf 100644
--- a/yt/yt/core/tracing/trace_context.cpp
+++ b/yt/yt/core/tracing/trace_context.cpp
@@ -377,6 +377,7 @@ TTraceContextPtr TTraceContext::CreateChild(
auto guard = Guard(Lock_);
child->ProfilingTags_ = ProfilingTags_;
child->TargetEndpoint_ = TargetEndpoint_;
+ child->AllocationTags_ = AllocationTags_;
return child;
}