diff options
author | atgshka <atgshka@yandex-team.com> | 2024-06-21 11:36:28 +0300 |
---|---|---|
committer | atgshka <atgshka@yandex-team.com> | 2024-06-21 11:58:27 +0300 |
commit | 4205a925c8efc7e3c87c27a0c6d697e54cd41beb (patch) | |
tree | 6e04c07aba060fe4d3d93d87e471765c5673b6b6 | |
parent | 8fd47d685a4b91a0476ad64ee6d956078904b33f (diff) | |
download | ydb-4205a925c8efc7e3c87c27a0c6d697e54cd41beb.tar.gz |
fix format
fix format
2a3b9c8eec232f461500e0180f51969e925a4e1e
-rw-r--r-- | yt/yt/core/tracing/trace_context.cpp | 5 |
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; } |