Skip to content

Commit

Permalink
fix macros usage (#13126)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 authored Dec 29, 2024
1 parent c413235 commit c2a9a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/kqp/compute_actor/kqp_scan_fetcher_actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ void TKqpScanFetcherActor::HandleExecute(TEvents::TEvUndelivered::TPtr& ev) {
auto state = InFlightShards.GetShardStateVerified(info->GetTabletId());
AFL_WARN(NKikimrServices::KQP_COMPUTE)("event", "TEvents::TEvUndelivered")("from_tablet", info->GetTabletId())
("state", state->State)("details", info->ToString())("node", SelfId().NodeId());
AFL_VERIFY(state->State == EShardState::Running)("state", state->State);
AFL_ENSURE(state->State == EShardState::Running)("state", state->State);
RetryDeliveryProblem(state);
}
return;
Expand Down

0 comments on commit c2a9a46

Please sign in to comment.