Skip to content

Commit 8b0fa73

Browse files
authored
YQ-3743 Add message to Y_ABORT_UNLESS in checkpoint_coordinator / to stable (#10755)
1 parent 25d4337 commit 8b0fa73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/fq/libs/checkpointing/checkpoint_coordinator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void TCheckpointCoordinator::Handle(NYql::NDqs::TEvReadyState::TPtr& ev) {
7373

7474
int tasksSize = GetTasksSize();
7575
const auto& actorIds = ev->Get()->Record.GetActorId();
76-
Y_ABORT_UNLESS(tasksSize == actorIds.size());
76+
Y_ABORT_UNLESS(tasksSize == actorIds.size(), "tasksSize %d, actorIds size %d, graph id %s", tasksSize, int(actorIds.size()), CoordinatorId.GraphId.c_str());
7777

7878
for (int i = 0; i < tasksSize; ++i) {
7979
const auto& task = GetTask(i);

0 commit comments

Comments
 (0)