From 4c292061ef052d9a61d6ce5ed287156deb280323 Mon Sep 17 00:00:00 2001 From: Dmitry Kardymon Date: Mon, 21 Oct 2024 16:03:49 +0300 Subject: [PATCH] YQ-3743 Add message to Y_ABORT_UNLESS in checkpoint_coordinator (#10660) --- ydb/core/fq/libs/checkpointing/checkpoint_coordinator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/core/fq/libs/checkpointing/checkpoint_coordinator.cpp b/ydb/core/fq/libs/checkpointing/checkpoint_coordinator.cpp index 6ed541976cd3..9baac0b11983 100644 --- a/ydb/core/fq/libs/checkpointing/checkpoint_coordinator.cpp +++ b/ydb/core/fq/libs/checkpointing/checkpoint_coordinator.cpp @@ -73,7 +73,7 @@ void TCheckpointCoordinator::Handle(NYql::NDqs::TEvReadyState::TPtr& ev) { int tasksSize = GetTasksSize(); const auto& actorIds = ev->Get()->Record.GetActorId(); - Y_ABORT_UNLESS(tasksSize == actorIds.size()); + Y_ABORT_UNLESS(tasksSize == actorIds.size(), "tasksSize %d, actorIds size %d, graph id %s", tasksSize, int(actorIds.size()), CoordinatorId.GraphId.c_str()); for (int i = 0; i < tasksSize; ++i) { const auto& task = GetTask(i);