diff options
author | DMokhnatkin <dmitriy.mokhnatkin@gmail.com> | 2022-06-24 19:48:25 +0300 |
---|---|---|
committer | DMokhnatkin <dmitriy.mokhnatkin@gmail.com> | 2022-06-24 19:48:25 +0300 |
commit | ebb79f9b653e420e3fd8da56eb30f6e6677e80f1 (patch) | |
tree | 4d2f204d9e906ad914ad19d4fa6a879be8263256 | |
parent | 8dc2e10ac8eefe74de3ea521bfdd67726a77d8c5 (diff) | |
download | ydb-ebb79f9b653e420e3fd8da56eb30f6e6677e80f1.tar.gz |
YQ-1081: remove temporary code
ref:04f6cbf0bf6dde7b70a372c20c52bbb23ee79a22
-rw-r--r-- | ydb/core/yq/libs/actors/pinger.cpp | 2 | ||||
-rw-r--r-- | ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/yq/libs/actors/pinger.cpp b/ydb/core/yq/libs/actors/pinger.cpp index 23b58ac327f..9cd8b06258f 100644 --- a/ydb/core/yq/libs/actors/pinger.cpp +++ b/ydb/core/yq/libs/actors/pinger.cpp @@ -244,7 +244,7 @@ private: SchedulerCookieHolder.Reset(nullptr); } - LOG_D("Forward ping request: " << ev->Get()->Request.ShortDebugString()); + LOG_D("Forward ping request: " << ev->Get()->Request); if (FatalError) { if (Finishing) { LOG_D("Got final ping request after fatal error"); diff --git a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h index acabdd7d8dd..565641b2f5d 100644 --- a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h +++ b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h @@ -1356,7 +1356,7 @@ protected: Y_VERIFY(AsyncIoFactory); const auto& outputDesc = Task.GetOutputs(outputIndex); const ui64 i = outputIndex; // Crutch for clang - CA_LOG_D("Create sink for output " << i << " " << outputDesc.ShortDebugString()); + CA_LOG_D("Create sink for output " << i << " " << outputDesc); std::tie(sink.AsyncOutput, sink.Actor) = AsyncIoFactory->CreateDqSink( IDqAsyncIoFactory::TSinkArguments { .OutputDesc = outputDesc, |