Skip to content

Commit 9e8341f

Browse files
authored
CA: LastRunStatus was always overwritten (backport #14710) (#14814)
1 parent f454f01 commit 9e8341f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,13 +388,13 @@ class TDqComputeActorBase : public NActors::TActorBootstrapped<TDerived>
388388
}
389389

390390
void ProcessOutputsImpl(ERunStatus status) {
391-
ProcessOutputsState.LastRunStatus = status;
392-
393391
CA_LOG_T("ProcessOutputsState.Inflight: " << ProcessOutputsState.Inflight);
394392
if (ProcessOutputsState.Inflight == 0) {
395393
ProcessOutputsState = TProcessOutputsState();
396394
}
397395

396+
ProcessOutputsState.LastRunStatus = status;
397+
398398
for (auto& entry : OutputChannelsMap) {
399399
const ui64 channelId = entry.first;
400400
TOutputChannelInfo& outputChannel = entry.second;

0 commit comments

Comments
 (0)