Skip to content

Commit

Permalink
Fix busy-wait in async compute actor (#11507)
Browse files Browse the repository at this point in the history
  • Loading branch information
yumkam authored Nov 12, 2024
1 parent edeb17d commit 75b75e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ class TDqAsyncComputeActor : public TDqComputeActorBase<TDqAsyncComputeActor, TC
if (!shouldSkipData && !outputChannel.EarlyFinish && !hasFreeMemory) {
CA_LOG_T("DrainOutputChannel return because No free memory in channel, channel: " << outputChannel.ChannelId);
ProcessOutputsState.HasDataToSend |= !outputChannel.Finished;
ProcessOutputsState.AllOutputsFinished = !outputChannel.Finished;
ProcessOutputsState.AllOutputsFinished &= outputChannel.Finished;
return;
}

Expand Down

0 comments on commit 75b75e9

Please sign in to comment.