Skip to content

Commit

Permalink
YQ-3743 Add message to Y_ABORT_UNLESS in checkpoint_coordinator (#10660)
Browse files Browse the repository at this point in the history
  • Loading branch information
kardymonds committed Oct 23, 2024
1 parent 9a9711d commit 4c29206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/fq/libs/checkpointing/checkpoint_coordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4c29206

Please sign in to comment.