aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoratgshka <atgshka@yandex-team.com>2024-06-21 11:36:28 +0300
committeratgshka <atgshka@yandex-team.com>2024-06-21 11:58:27 +0300
commit4205a925c8efc7e3c87c27a0c6d697e54cd41beb (patch)
tree6e04c07aba060fe4d3d93d87e471765c5673b6b6
parent8fd47d685a4b91a0476ad64ee6d956078904b33f (diff)
downloadydb-4205a925c8efc7e3c87c27a0c6d697e54cd41beb.tar.gz
fix format
fix format 2a3b9c8eec232f461500e0180f51969e925a4e1e
-rw-r--r--yt/yt/core/tracing/trace_context.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/yt/yt/core/tracing/trace_context.cpp b/yt/yt/core/tracing/trace_context.cpp
index b048be561b..46c83d2ea6 100644
--- a/yt/yt/core/tracing/trace_context.cpp
+++ b/yt/yt/core/tracing/trace_context.cpp
@@ -744,7 +744,10 @@ void TTraceContextHandler::UpdateTraceContext()
std::optional<TTracingAttributes> TTraceContextHandler::GetTracingAttributes() const
{
return TraceContext_
- ? std::make_optional<TTracingAttributes>({.TraceId = TraceContext_->GetTraceId(), .SpanId = TraceContext_->GetSpanId()})
+ ? std::make_optional<TTracingAttributes>({
+ .TraceId = TraceContext_->GetTraceId(),
+ .SpanId = TraceContext_->GetSpanId()
+ })
: std::nullopt;
}