diff options
author | mdartemenko <mdartemenko@yandex-team.com> | 2022-08-26 17:27:23 +0300 |
---|---|---|
committer | mdartemenko <mdartemenko@yandex-team.com> | 2022-08-26 17:27:23 +0300 |
commit | 5ed0649ded71642e99fbfad64f95ccf0b8dd18fb (patch) | |
tree | e3b0f67baa07e87e52799649df544062c826af61 /library/cpp | |
parent | c0ec5c1dde9b0d33aba0d5e4e942fc0c64d99b30 (diff) | |
download | ydb-5ed0649ded71642e99fbfad64f95ccf0b8dd18fb.tar.gz |
Add support of Wilson tracing lib for kqp execution
add tracing to scan executer
add tracing to data and literal executer
add local traces
add scan executer coverage
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/actors/wilson/wilson_span.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/library/cpp/actors/wilson/wilson_span.cpp b/library/cpp/actors/wilson/wilson_span.cpp index c932560254d..dcd458be7c6 100644 --- a/library/cpp/actors/wilson/wilson_span.cpp +++ b/library/cpp/actors/wilson/wilson_span.cpp @@ -53,7 +53,9 @@ namespace NWilson { } void TSpan::Send() { - TActivationContext::Send(new IEventHandle(MakeWilsonUploaderId(), {}, new TEvWilson(&Data->Span))); + if (TlsActivationContext) { + TActivationContext::Send(new IEventHandle(MakeWilsonUploaderId(), {}, new TEvWilson(&Data->Span))); + } Data->Sent = true; } |