aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhor911 <hor911@ydb.tech>2022-07-18 19:17:41 +0300
committerhor911 <hor911@ydb.tech>2022-07-18 19:17:41 +0300
commit9896a69313f3e732b5a791e5d593052460bb0a09 (patch)
tree976fc27f3c3a35d9ff56b67b9ee02cb76046a4cc
parent7d69a2948aea67808240c4db4aab3e83dacb0c4f (diff)
downloadydb-9896a69313f3e732b5a791e5d593052460bb0a09.tar.gz
Incorrect log placement
-rw-r--r--ydb/library/yql/dq/actors/compute/dq_compute_actor_checkpoints.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/dq/actors/compute/dq_compute_actor_checkpoints.cpp b/ydb/library/yql/dq/actors/compute/dq_compute_actor_checkpoints.cpp
index cf78bc01277..f47e15c2666 100644
--- a/ydb/library/yql/dq/actors/compute/dq_compute_actor_checkpoints.cpp
+++ b/ydb/library/yql/dq/actors/compute/dq_compute_actor_checkpoints.cpp
@@ -238,8 +238,8 @@ void TDqComputeActorCheckpoints::Handle(TEvDqCompute::TEvInjectCheckpoint::TPtr&
YQL_ENSURE(IngressTask, "Shouldn't inject barriers into non-ingress tasks");
YQL_ENSURE(!PendingCheckpoint);
- LOG_PCP_D("TEvInjectCheckpoint");
StartCheckpoint(ev->Get()->Record.GetCheckpoint());
+ LOG_PCP_D("TEvInjectCheckpoint");
ComputeActor->ResumeExecution();
}